-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "dS",
"simpleName": "dataStructure",
"version": "0.0.2",
"author": "Dominic <dominic097@gmail.com>",
"main": "index.js",
"keywords": [
"ds",
"data",
"structure",
"ML",
"machine learning",
"linked list",
"data structure",
"BTree",
"binary bearch tree"
],
"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": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha src/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": "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/dS gh-pages --force"
}
}