-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "sw-redux",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --recursive",
"directories": "mkdir -p dist/static",
"lint": "eslint js; eslint test",
"sw": "browserify -t babelify js/service-worker.js > dist/service.js",
"js": "browserify -t babelify js/index.js > dist/static/index.js",
"html": "cp html/*.html dist/",
"css": "sassc --style compressed scss/main.scss | postcss --use autoprefixer > dist/static/index.css",
"prebuild": "npm run lint; npm test; npm run directories; scripts/version.js",
"build": "npm run js; npm run sw; npm run css; npm run html; scripts/manifest.js",
"serve": "cd dist; http-server -p 7777 -c-1",
"start": "npm run build; npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adregan/sw-redux.git"
},
"author": "Duncan Regan",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/adregan/sw-redux/issues"
},
"homepage": "https://github.com/adregan/sw-redux#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0"
},
"dependencies": {
"localforage": "^1.4.0"
}
}