-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "offline-news",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "git clean -fxd",
"start": "node index.js",
"test": "npm run jshint && npm run lintspaces",
"jshint": "jshint `npm run -s js-files`",
"lintspaces": "lintspaces -n -t -d spaces -i js-comments -s 2 `npm run -s js-files`",
"js-files": "find . -name '*.js' ! -path './node_modules/*' ! -name 'promise.js' ! -name 'indexeddb.shim.min.js' ! -name 'cache.shim.js' ! -name 'caches-polyfill.js'",
"deploy": "haikro build deploy --app offline-news-service-worker --commit `git rev-parse HEAD` --heroku-token ${HEROKU_AUTH_TOKEN} --verbose"
},
"repository": {
"type": "git",
"url": "git://github.com/matthew-andrews/offline-news.git"
},
"author": "Matt Andrews <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthew-andrews/offline-news/issues"
},
"homepage": "https://github.com/matthew-andrews/offline-news",
"private": true,
"dependencies": {
"es6-promise": "^2.0.0",
"express": "^4.8.7",
"haikro": "^1.5.2",
"isomorphic-fetch": "^1.1.0"
},
"devDependencies": {
"jshint": "^2.5.5",
"lintspaces-cli": "0.0.4"
},
"engines": {
"node": "0.10.x"
}
}