-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "felint",
"version": "1.1.7",
"description": "linter for fe",
"keywords": [
"eslint",
"stylelint",
"felint"
],
"author": "lianchengjie <lianchengjie@youzan.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/youzan/felint.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"bin": "lib/index.js",
"dependencies": {
"colors": "1.1.2",
"commander": "2.9.0",
"js-yaml": "3.6.1",
"shelljs": "0.7.7",
"walkdir": "0.0.11"
},
"bugs": {
"url": "https://github.com/youzan/felint/issues"
},
"homepage": "https://github.com/youzan/felint#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-lean-imports": "^0.3.3",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-vue": "^2.0.1",
"stylelint": "^7.12.0",
"stylelint-config-standard": "16.0.0",
"stylelint-processor-html": "^1.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/ --out-dir lib/",
"prepublish": "babel src/ --out-dir lib/",
"postinstall": "echo \"\\033[32m请前往https://github.com/youzan/felint/blob/master/README.md查看更新内容! \\033[0m\""
}
}