-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 956 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 956 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
32
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "node ./tasks/bootstrap && npm run env:webpack2 && npm i && lerna bootstrap",
"env:webpack1": "node ./tasks/select-env webpack1",
"env:webpack2": "node ./tasks/select-env webpack2",
"test": "mocha packages/*/test/{*.test.js,**/*.test.js}",
"coverage": "istanbul cover --report html --report lcov _mocha packages/*/test/{*.test.js,**/*.test.js}"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"extract-text-webpack-plugin": "3",
"istanbul": "^0.4.5",
"lerna": "2.0.0-beta.37",
"memory-fs": "^0.3.0",
"minimist": "^1.2.0",
"mocha": "2.4.5",
"rewire": "^2.5.2",
"shelljs": "^0.7.6",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"webpack": "2"
}
}