-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.58 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
{
"name": "nodeschool-santiago",
"version": "2.0.0",
"description": "Sitio Web de NodeSchool Santiago.",
"directories": {
"doc": "docs"
},
"scripts": {
"docs:build": "mkdirp docs && npm-run-all --serial docs:build:*",
"docs:build:html": "mustache docs-src/data.json docs-src/index.mustache > docs/index.html",
"docs:build:styles": "mkdirp docs/styles && stylus docs-src/styles/index.styl --out docs/styles --include node_modules --include-css",
"docs:build:images": "ncp docs-src/images docs/images",
"docs:watch": "mkdirp docs && npm-run-all --parallel docs:watch:*",
"docs:watch:html": "chokidar docs-src/index.mustache -c 'npm run docs:build:html' --initial",
"docs:watch:styles": "npm run docs:build:styles -- -w",
"docs:watch:images": "chokidar docs-src/images/* -c 'npm run docs:build:images' --initial",
"docs:watch:fonts": "chokidar docs-src/fonts/* -c 'npm run docs:build:fonts' --initial",
"docs:server": "static docs --port=${PORT:=8080} --host-address=${HOST:=127.0.0.1}",
"docs:dev": "npm-run-all --parallel docs:watch docs:server"
},
"repository": {
"type": "git",
"url": "https://github.com/nodeschool/santiago.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/nodeschool/santiago/issues"
},
"homepage": "https://nodeschool.io/santiago",
"dependencies": {
"mustache": "^2.2.1"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"mkdirp": "^0.5.1",
"mustache": "^2.3.0",
"ncp": "^2.0.0",
"node-static": "^0.7.11",
"npm-run-all": "^4.1.5",
"stylus": "^0.54.5"
}
}