forked from alibaba/ice
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "ice-workspace",
"version": "0.0.2",
"scripts": {
"publish": "git fetch --all && git pull origin master && lerna publish",
"bootstrap": "lerna bootstrap",
"setup": "lerna setup",
"db": "node ./scripts/generate-marterials-database",
"lint": "npm run lint:nofix -- --fix",
"lint:nofix": "eslint --cache --ext .js --ext .jsx ./",
"format":
"prettier blocks/*/src/**/*.js blocks/*/src/**/*.jsx layouts/*/src/**/*.js layouts/*/src/**/*.jsx scaffords/*/src/**/*.js scaffords/*/src/**/*.jsx tools/**/*.js --write"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba/ice"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-lib-import": "^0.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"findup": "^0.1.5",
"ghooks": "^2.0.2",
"ice-scripts": "^0.1.0",
"lerna": "^2.5.1",
"moment": "^2.20.1",
"prettier": "^1.10.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"semver-regex": "^1.0.0",
"uppercamelcase": "^3.0.0"
},
"config": {
"ghooks": {
"commit-msg": "./scripts/validate-commit-msg.js",
"pre-push": "npm run lint"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}