-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.74 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
59
60
61
62
63
64
65
66
67
68
{
"name": "crater",
"version": "1.0.0",
"description": "generate service-worker.js for website",
"main": "main.js",
"scripts": {
"start": "node build/build.js",
"build": "node build/build.js",
"validate": "node build/validate/index.js",
"test": "NODE_ENV=testing node build/build.js && node ./test/helpers/download-browsers.js && mocha",
"lint": "node ./node_modules/fecs/bin/fecs"
},
"repository": {
"url": "https://github.com/lavas-project/crater"
},
"keywords": [
"service-worker",
"pwa"
],
"author": {
"name": "Wang Yisheng",
"email": "[email protected]"
},
"contributors": [
{
"name": "Wang Yisheng",
"email": "[email protected]"
},
{
"name": "Chen Qiushi",
"url": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.0.1",
"glob": "^7.1.2",
"ora": "^1.3.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"serviceworker-cache-polyfill": "^4.0.0",
"shelljs": "^0.7.8",
"webpack": "^2.7.0"
},
"devDependencies": {
"express": "^4.15.3",
"fecs": "^1.4.0",
"chai": "^3.4.1",
"chromedriver": "^2.28.0",
"geckodriver": "1.6.1",
"cookie-parser": "^1.4.1",
"mocha": "^3.2.0",
"selenium-assistant": "^5.0.4",
"sw-testing-helpers": "^1.0.2"
}
}