forked from nodeschool/nodeschool.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.53 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
44
45
46
47
{
"name": "nodeschool.github.io",
"version": "1.0.0",
"description": "nodeschool.io webpage",
"main": "index.js",
"scripts": {
"build": "npm run build-chapters -- $P; npm run build-dependencies; npm run build-copy -- $P; npm run build-html -- $P",
"build-copy": "./scripts/build-copy.js $$",
"build-html": "./scripts/build-html.js $$",
"build-chapters": "./scripts/build-chapters.js $$",
"build-dependencies": "mkdir -p .build/js; browserify -r xhr -r mustache > .build/js/dependencies.js",
"generate-language": "./scripts/generate-lang.js",
"generate-untranslated-lang": "./scripts/generate-untranslated-lang.js",
"validate-html": "./scripts/validate-html.js",
"start": "mkdir -p .build; env WATCH=true P=$$ npm run build && live-server .build",
"deploy": "sh ./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/nodeschool/nodeschool.github.io.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/nodeschool/nodeschool.github.io/issues"
},
"homepage": "https://github.com/nodeschool/nodeschool.github.io",
"dependencies": {
"is-running": "^1.0.5",
"mustache": "^0.8.2",
"xhr": "^1.16.1"
},
"devDependencies": {
"after-all": "^2.0.1",
"async": "^0.9.0",
"browserify": "^6.2.0",
"cheerio": "^0.17.0",
"cheerio-eq": "^1.0.0",
"gaze": "^0.5.1",
"glob": "^5.0.6",
"jsdom": "^3.1.2",
"live-server": "^0.7.1",
"mkdirp": "^0.5.1",
"posix": "^2.0.1",
"read": "^1.0.5"
}
}