-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 833 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 833 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
{
"scripts": {
"build": "lerna run build",
"doc": "lerna run doc",
"test": "lerna bootstrap && lerna run test",
"lint": "eslint './packages/**/*.ts' --ignore-path .gitignore --fix && git add .",
"precommit": "npm run lint && npm run build && npm run test"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-typescript": "^0.3.0",
"espower-typescript": "^8.0.2",
"husky": "^0.14.3",
"lerna": "^2.11.0",
"prettier": "^1.7.4",
"typescript": "^2.5.3",
"typescript-eslint-parser": "^7.0.0"
}
}