This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 341
/
package.json
64 lines (63 loc) · 1.67 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
{
"name": "serviceworker-cookbook",
"version": "0.1.0",
"description": "A collection of Service Worker use cases, with commented sources and playgrounds.",
"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 <npm@digitarald.com> (http://digitarald.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozilla/serviceworker-cookbook/issues"
},
"homepage": "https://mozilla.github.com/serviceworker-cookbook/",
"devDependencies": {
"browser-sync": "^2.9.6",
"del": "^4.1.0",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-css-base64": "^1.3.2",
"gulp-docco": "0.0.4",
"gulp-eslint": "^3.0.1",
"gulp-load-plugins": "^1.1.0",
"gulp-minify-css": "^1.2.2",
"gulp-rename": "^1.2.2",
"gulp-swig": "^0.9.1",
"gulp-uglify": "^2.0.1",
"marked": "^0.6.1",
"merge-stream": "^1.0.0",
"mozilla-tabzilla": "^0.5.1",
"rename": "^1.0.3",
"through2": "^3.0.1"
},
"dependencies": {
"body-parser": "^1.14.1",
"es6-promisify": "^6.0.0",
"express": "^4.13.3",
"glob": "^7.0.0",
"request": "^2.83.0",
"swig": "^1.4.2",
"web-push": "^3.2.2"
},
"engines": {
"node": "6"
}
}