forked from robnyman/Firefox-OS-Boilerplate-App
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 937 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
{
"kbt2": {
"markdownIndex": "/lessons/lesson54.md"
},
"repository": "https://github.com/kvz/kbt2",
"license": "MIT",
"scripts": {
"build": "scripts/manifest.sh > ./manifest.appcache",
"deploy": "npm run build && git checkout gh-pages && git pull && git add --all . && git commit -am 'New lessons' && git push",
"favicon": "scripts/favicon.sh",
"help": "cat USAGE.md",
"install": "cp node_modules/marked/lib/marked.js ./js/",
"serve": "browser-sync start --server --files 'manifest.*' 'package.json'",
"start": "npm-run-all help build --parallel watch serve",
"watch": "nodemon --verbose --watch . lessons js --ignore 'manifest.*' --ext md,js,json,sh,css --exec 'npm run build'"
},
"dependencies": {
"bash3boilerplate": "1.0.3",
"fakefile": "0.0.5",
"grunt": "0.4.5",
"manifoldjs": "0.1.0",
"marked": "0.3.2",
"nodemon": "1.8.1",
"npm-run-all": "2.2.2"
}
}