forked from mdn/serviceworker-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "serviceworker-cookbook",
"version": "0.1.0",
"description": "It's online. It's offline. It's a Service Worker!",
"private": true,
"scripts": {
"start": "node --harmony server.js",
"pretest": "npm run build",
"test": "gulp test",
"watch": "gulp watch",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/serviceworker-cookbook.git"
},
"keywords": [
"serviceworker",
"cookbook"
],
"author": "Harald Kirschner <[email protected]> (http://digitarald.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozilla/serviceworker-cookbook/issues"
},
"homepage": "https://mozilla.github.com/serviceworker-cookbook/",
"devDependencies": {
"@alrra/travis-scripts": "^1.1.1",
"browser-sync": "^2.9.6",
"eslint-config-airbnb": "^0.1.0",
"gulp-eslint": "^1.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-docco": "0.0.4",
"gulp-load-plugins": "^0.10.0",
"gulp-rename": "^1.2.2",
"gulp-swig": "^0.7.4",
"marked": "^0.3.5",
"del": "^2.0.2",
"merge-stream": "^1.0.0",
"rename": "^1.0.3",
"mozilla-tabzilla": "^0.5.1",
"through2": "^2.0.0"
},
"dependencies": {
"body-parser": "^1.14.1",
"es6-promisify": "^3.0.0",
"express": "^4.13.3",
"glob": "^5.0.15",
"request": "^2.64.0",
"swig": "^1.4.2",
"web-push": "0.0.11"
},
"engines": {
"node": "4"
}
}