-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fire-tools",
"version": "0.1.3",
"description": "> 对于一些React 或 JS 项目,进行一些编译,打包等工作",
"main": "index.js",
"bin": {
"fire-tools": "./bin/fire-tools.js",
"fire-tools-run": "./bin/fire-tools-run.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pub": "npm run lint && git push origin && npm publish",
"lint": "eslint --fix src",
"prettier": "node ./script/prettier.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireLeafone/fire-tools.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/FireLeafone/fire-tools/issues"
},
"homepage": "https://github.com/FireLeafone/fire-tools#readme",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-member-expression-literals": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-property-literals": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "^9.7.5",
"chalk": "^3.0.0",
"colorful": "^2.1.0",
"commander": "^5.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-strip-code": "^0.1.4",
"gulp-typescript": "^5.0.1",
"is-windows": "^1.0.2",
"less": "^3.11.1",
"less-plugin-npm-import": "^2.1.0",
"merge2": "^1.3.0",
"minimist": "^1.2.5",
"object-assign": "^4.1.1",
"postcss": "^7.0.39",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"rucksack-css": "^1.0.2",
"through2": "^3.0.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3",
"update-notifier": "^4.1.0",
"webpack": "^4.42.1",
"webpack-filter-warnings-plugin": "^1.2.1",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"pre-commit": "^1.2.2"
},
"peerDependencies": {
"typescript": ">=3.5.2"
},
"pre-commit": [
"lint",
"prettier"
]
}