-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "dS",
"simpleName": "blog",
"version": "0.0.1",
"author": "Dominic <dominic097@gmail.com>",
"main": "",
"keywords": [],
"repository": {
"type": "git",
"url": "git@github.com:dominic097/dS.git"
},
"presets": [
"es2016"
],
"dependencies": {
},
"devDependencies": {
"browserify": "^5.12.1",
"eslint": "^3.10.2",
"gitbook-cli": "^2.3.0",
"gulp": "^3.8.8",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.3.0",
"gulp-mocha": "^1.0.0",
"istanbul": "^0.4.2",
"jslint": "^0.9.6",
"mocha": "^2.2.5",
"should": "^7.0.2",
"vinyl-source-stream": "^1.0.0"
},
"scripts": {
"test": "gulp test",
"coveralls": "gulp coveralls",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "git pull && npm i && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push git@github.com:dominic097/blog gh-pages --force"
}
}