65 строки
1.7 KiB
JSON
65 строки
1.7 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|