-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"scripts": {
"lint": "eslint packages",
"postinstall": "cd packages/service-worker-mock && yarn install",
"publish:major": "node scripts/publish.js --type major",
"publish:minor": "node scripts/publish.js --type minor",
"publish:bugfix": "node scripts/publish.js --type bugfix",
"start": "node demo/server.js",
"test": "jest"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"dom-urls": "^1.1.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0",
"shelljs": "^0.7.6",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"yargs": "^6.6.0"
},
"dependencies": {
"mkdirp": "^0.5.1"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
".*/__tests__/fixtures"
],
"setupFiles": [
"<rootDir>/testing/jest-setup.js"
]
},
"license": "MIT"
}