-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"private": true,
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-plugin-babel": "^3.2.0",
"ghooks": "^1.2.1",
"lerna": "2.0.0-beta.30",
"should": "^11.1.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-es2015-destructuring",
"transform-es2015-parameters",
"transform-es2015-modules-commonjs"
]
},
"scripts": {
"test": "lerna run build && lerna run --concurrency 1 test",
"lint": "eslint ."
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && lerna run build && lerna run --concurrency 1 test-cov"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}