-
Notifications
You must be signed in to change notification settings - Fork 261
/
package.json
63 lines (63 loc) · 1.77 KB
/
package.json
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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"eslint": "make eslint-lint",
"lint": "make lint",
"test": "make test",
"install": "lerna bootstrap --ignore=beidou-example*",
"reinstall-examples-dependencies": "make reinstall-examples-dependencies",
"clean": "make clean",
"ci": "make ci",
"changelog": "make changelog",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,scss,less,md}": [
"prettier --write",
"git add"
]
},
"author": "weichunpeng",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.1.2",
"egg-bin": "^4.0.4",
"eslint": "^4.11.0",
"eslint-config-beidou": "1.0.0-alpha.5",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lerna": "^3.10.5",
"lerna-changelog": "^0.7.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1"
},
"engines": {
"node": ">= 8.0.0"
},
"license": "MIT",
"config": {
"alicov": {
"threshold": 90
}
},
"repository": "https://github.com/alibaba/beidou",
"dependencies": {}
}