-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
{
"name": "sequoia.github.com",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"blog": "npm-run-all blog:*",
"watch": "npm-run-all --parallel watch:**",
"push": "git subtree push --prefix out origin master",
"bbl:build": "babel src --out-dir dist",
"blog:stuff": "mkdirp out/s/ && cp -r _content/static/* out/s",
"blog:assets": "cp -r site_assets/* out/",
"blog:markdowns": "node .",
"blog:imgs": "mkdirp out/img && cp -r _content/img/* out/img/",
"watch:bbl:build": "npm run bbl:build -- --watch",
"watch:blog:assets": "watch --wait=1 'npm run blog:assets' site_assets",
"watch:blog:liveserver": "live-server out",
"watch:blog:contentANDtmpl": "watch --wait=1 'npm run blog:markdowns' _content templates",
"watch:imgs": "watch --wait=1 'npm run blog:imgs' _content/img",
"postinstall": "npm run bbl:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sequoia/sequoia.github.com.git"
},
"author": "Sequoia McDowell <sequoia.mcdowell@gmail.com> (https://sequoia.makes.software/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Sequoia/sequoia.github.com/issues"
},
"homepage": "https://sequoia.makes.software",
"dependencies": {
"babel-core": "^6.3.21",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"bluebird": "^3.1.1",
"front-matter": "^2.0.1",
"highlight.js": "^9.0.0",
"jade": "^1.11.0",
"live-server": "^0.9.2",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"months": "^1.0.1",
"node-dir": "^0.1.11",
"ramda": "^0.19.0",
"root-path": "^0.2.0",
"string": "^3.3.1",
"watch": "^0.17.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"npm-run-all": "^3.1.0"
}
}