-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 973 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
{
"name": "service-worker-demo",
"version": "1.0.0",
"description": "Demonstrations for Service Worker related features, including [Service Worker][service-worker], [Fetch API][fetch-api], and [Web App Manifest][webapp-manifest].",
"main": "index.js",
"scripts": {
"start": "node ./server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/service-worker/demos.git"
},
"author": "harttle <yangjvn@126.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/service-worker/demos/issues"
},
"homepage": "https://github.com/service-worker/demos#readme",
"dependencies": {
"express": "^4.15.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}