-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
{
"name": "learn-service-worker",
"version": "0.0.0",
"description": "This is a repository with small tasks to enable offline features with service workers in a simple webapp",
"scripts": {
"start": "node server.js",
"test": "ava",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/relekang/learn-service-worker.git"
},
"author": "Rolf Erik Lekang <me@rolflekang.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/relekang/learn-service-worker/issues"
},
"ava": {
"verbose": false
},
"homepage": "https://github.com/relekang/learn-service-worker#readme",
"dependencies": {
"express": "^4.14.0",
"finalhandler": "^0.5.0",
"lodash": "^4.15.0",
"request": "^2.74.0",
"serve-static": "^1.11.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"ava": "^0.16.0",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"jsdomify": "^2.1.0",
"sinon": "^1.17.5"
}
}