-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
36 lines (36 loc) · 1 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
{
"name": "command_line_bootcamp",
"version": "1.0.1",
"description": "an adventure in learning the command-line",
"main": "index.js",
"scripts": {
"render": "submarine markdown guide --template=guide.html",
"deploy": "gh-pages-deploy",
"build": "browserify index.js -o bundle.js && browserify terminal.js -o terminal-bundle.js",
"fixcolor": "sed 's/eeeeec/333333/g' terminal-bundle.js > terminal-bundle.fjs && mv terminal-bundle.fjs terminal-bundle.js",
"start": "beefy index.js:bundle.js terminal.js:terminal-bundle.js"
},
"author": "richard smith-unna",
"license": "BSD",
"watch": {
"build": "workshop/*.md"
},
"gh-pages-deploy": {
"prep": [
"build",
"fixcolor",
"render"
],
"noprompt": "true"
},
"dependencies": {
"adventure-time": "command-line-bootcamp/adventure-time",
"gh-pages-deploy": "^0.1.1",
"submarine": "0.2.4"
},
"devDependencies": {
"beefy": "^2.1.1",
"browserify": "^6.1.0",
"npm-watch": "0.0.0"
}
}