-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
27 lines (27 loc) · 1001 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
{
"name": "workshop-making-it-work-offline",
"version": "0.0.0",
"description": "Making it work offline ======================",
"main": "index.js",
"scripts": {
"test": "npm run jshint && npm run lintspaces",
"jshint": "jshint `npm run js-files | tail -n +5`",
"lintspaces": "lintspaces -ntd tabs -i js-comments `npm run js-files | tail -n +5`",
"js-files": "find . -name '*.js' ! -path './node_modules/*' ! -name 'fetch.js' ! -name 'promise.js' ! -name 'indexeddb.shim.min.js'"
},
"repository": {
"type": "git",
"url": "git://github.com/matthew-andrews/workshop-making-it-work-offline.git"
},
"author": "Matt Andrews <[email protected]>",
"license": "proprietary",
"bugs": {
"url": "https://github.com/matthew-andrews/workshop-making-it-work-offline/issues"
},
"homepage": "https://github.com/matthew-andrews/workshop-making-it-work-offline",
"private": true,
"devDependencies": {
"jshint": "^2.5.5",
"lintspaces-cli": "0.0.4"
}
}