-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nodeschool-saopaulo",
"version": "1.0.0",
"description": "",
"main": "",
"directories": {
"doc": "docs"
},
"scripts": {
"create": "node scripts/create.js",
"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 && mustache docs-src/data.json docs-src/social.mustache > docs/social.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:build:fonts": "ncp docs-src/fonts docs/fonts",
"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",
"docs:dev": "npm-run-all --parallel docs:watch docs:server",
"docs:publish": "git add docs-src/* docs/* && git commit -m \"AUTOMATIC site update\" && git push",
"docs:generate-social": "node scripts/generate_social_image.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodeschool/saopaulo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodeschool/saopaulo/issues"
},
"homepage": "https://github.com/nodeschool/saopaulo#readme",
"dependencies": {
"async": "^2.0.1",
"chalk": "^1.1.3",
"inquirer": "^1.2.1",
"lodash": "^4.17.13",
"moment": "^2.23.0",
"mustache": "^2.2.1",
"nightmare": "^3.0.1",
"ora": "^0.3.0",
"request": "^2.88.0",
"slug": "^0.9.3"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"mkdirp": "^0.5.1",
"mustache": "^2.3.0",
"ncp": "^2.0.0",
"node-static": "^0.7.9",
"npm-run-all": "^4.0.2",
"sharp": "^0.21.1",
"stylus": "^0.54.5"
}
}