forked from serviceworker/offline-news-service-worker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1011 Bytes
/
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
{
"name": "offline-news",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"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 'superagent.js' ! -name 'promise.js' ! -name 'indexeddb.shim.min.js' ! -name 'cache.shim.js'"
},
"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": {
"express": "^4.8.7",
"superagent": "^0.18.2"
},
"devDependencies": {
"jshint": "^2.5.5",
"lintspaces-cli": "0.0.4"
},
"engines": {
"node": "0.10.x"
}
}