-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "dynapi",
"author": "Hana Shiro <shirohana0608@gmail.com>",
"license": "MIT",
"scripts": {
"build": "make build",
"lint": "make lint",
"precommit": "lint-staged",
"test": "make test"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"lint-staged": {
"/*.js": "eslint --format=codeframe",
"scripts/**/*.js": "eslint --format=codeframe",
"packages/*/src/**/*.js": "eslint --format=codeframe",
"packages/*/test/*.test.js": "eslint --format=codeframe"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.46",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.46",
"@babel/preset-env": "7.0.0-beta.46",
"ava": "^0.25.0",
"babel-eslint": "^8.0.0",
"babel-plugin-istanbul": "^4.1.4",
"chalk": "^2.4.1",
"codecov": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0-beta.2",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.0",
"husky": "^0.14.3",
"lerna": "^2.10.2",
"lerna-changelog": "^0.7.0",
"lint-staged": "^7.0.4",
"merge-stream": "^1.0.1",
"nyc": "^11.1.0",
"through2": "^2.0.3"
},
"nyc": {
"include": [
"packages/*/src"
],
"exclude": [
"packages/*/test"
]
}
}