-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "dish",
"version": "1.0.0",
"description": "a mono repo of my-dish",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"lint": "eslint .",
"changelog": "lerna-changelog",
"bootstrap": "lerna bootstrap"
},
"author": "abouthiroppy <[email protected]> (http://about-hiroppy.com)",
"license": "MIT",
"dependencies": {
"lerna": "^2.0.0"
},
"devDependencies": {
"ava": "^0.21.0",
"conventional-changelog-cli": "^1.3.2",
"eslint": "^4.3.0",
"eslint-config-sky": "^1.6.2",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.1.0",
"nyc": "^11.1.0",
"rimraf": "^2.6.2",
"yeoman-assert": "^3.1.0",
"yeoman-environment": "^2.0.5",
"yeoman-test": "^1.7.0"
},
"ava": {
"files": [
"packages/*/test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
}
}