forked from ice-lab/build-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 999 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 999 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules ./packages/*/node_modules",
"setup": "npm run clean && yarn install --registry=https://registry.npmmirror.com && lerna bootstrap --registry=https://registry.npmmirror.com",
"lint": "eslint --cache --quiet --ext .js,.ts ./",
"lint-fix": "eslint --cache --ext .js,.ts ./ --fix",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "cd packages/build-scripts && npm run test",
"publish": "cd packages/build-scripts && npm run build && npm publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@ice/spec": "^0.1.4",
"eslint": "^6.0.1",
"husky": "^1.3.1",
"lerna": "^3.16.4",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}