-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 957 Bytes
/
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
{
"name": "codeheaven-io",
"version": "1.0.0",
"description": "CodeHeaven's blog - codeheaven.io",
"author": "CodeHeaven",
"main": "index.js",
"license": "MIT",
"homepage": "http://codeheaven.io",
"repository": {
"type": "git",
"url": "git+https://github.com/codeheaven-io/codeheaven.io.git"
},
"bugs": {
"url": "https://github.com/codeheaven-io/codeheaven.io/issues"
},
"dependencies": {
"d3": "^3.5.12",
"lodash": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"webpack": "^1.12.9"
},
"scripts": {
"test": "npm run build && bundle exec htmlproof ./_site --url-ignore http://localhost:8080",
"build": "bundle exec jekyll build && webpack",
"deploy": "npm test && s3_website push",
"deploy-skip-test": "s3_website push"
}
}