-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
36 lines (36 loc) · 1005 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
35
36
{
"name": "javascript-algorithms",
"version": "0.0.0",
"description": "Implementations of different computer science algorithms",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"@jeremyckahn/minami": "^1.3.1",
"gh-pages": "^1.1.0",
"gulp": "^4.0.2",
"gulp-eslint": "^3.0.1",
"gulp-jasmine": "^2.0.1",
"jsdoc": "3.5.5",
"live-server": "^1.2.0"
},
"scripts": {
"build": "gulp build",
"test": "gulp test",
"deploy": "npm run doc:build && gh-pages -d dist -b gh-pages",
"doc": "npm run doc:build && npm run doc:view",
"doc:build": "jsdoc -c doc-config.json",
"doc:view": "live-server dist --port=9124"
},
"repository": {
"type": "git",
"url": "git://github.com/mgechev/javascript-algorithms"
},
"author": "@mgechev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/javascript-algorithms/issues"
},
"homepage": "https://github.com/mgechev/javascript-algorithms"
}