-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.28 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
{
"name": "hacksaw",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/src/**/**/*.js",
"test:path": "mocha",
"test:coverage": "istanbul cover --report html _mocha -- test/src/**/*.js ; open ./coverage/index.html",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:buildize/hacksaw gh-pages --force"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "6.9.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"gitbook-cli": "^2.3.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.1.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"uuid": "^3.0.1"
},
"dependencies": {
"lodash": "^4.17.4"
},
"version": "0.6.6"
}