forked from nodeschool/nodeschool.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "nodeschool.github.io",
"version": "1.0.0",
"description": "nodeschool.io webpage",
"main": "index.js",
"scripts": {
"build": "node ./scripts/compile-chapters.js && browserify -r xhr -r browser-locale -r mustache > js/dependencies.js",
"language": "node ./scripts/generate_lang.js",
"validate-html": "node ./scripts/validate_html",
"start": "http-server",
"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": {
"browser-locale": "^1.0.0",
"xhr": "^1.16.1",
"mustache": "^0.8.2"
},
"devDependencies": {
"after-all": "^2.0.1",
"browserify": "^6.2.0",
"cheerio": "^0.17.0",
"cheerio-eq": "^1.0.0",
"http-server": "^0.7.2",
"read": "^1.0.5",
"glob": "^4.0.6"
}
}