-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
40
41
42
43
{
"name": "campjs-vii-2016",
"version": "0.0.0",
"private": true,
"description": "nature's best practices for distributed networks",
"main": "index.js",
"scripts": {
"present": "ecstatic .",
"build": "markdown-to-slides -t campjs-vii-2016 -d README.md -o index.html -s index.css -j index.js -i",
"watch": "npm run build -- -w",
"livereload": "wtch -d . -e html,css,png,gif,jpg | garnish --level debug",
"static": "ecstatic-lr .",
"start": "npm-run-all -p watch livereload static",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css,png,jpg,jpeg} dist'",
"push": "gh-pages -d dist",
"deploy": "npm-run-all -s dist build push"
},
"browserify": {
"transform": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/campjs-vii-2016.git"
},
"keywords": [],
"author": "Mikey <[email protected]> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/campjs-vii-2016/issues"
},
"homepage": "https://github.com/ahdinosaur/campjs-vii-2016#readme",
"devDependencies": {
"ecstatic-lr": "^1.0.1",
"garnish": "^5.2.0",
"gh-pages": "^0.11.0",
"npm-run-all": "^1.6.0",
"wtch": "^4.0.1"
},
"dependencies": {
"ecstatic": "^0.8.0",
"markdown-to-slides": "^1.0.3"
}
}