forked from mgechev/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 967 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 967 Bytes
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": {
"gulp": "^4.0.2",
"gulp-istanbul": "^1.1.3",
"gulp-jasmine": "^4.0.0",
"gulp-jscs": "^4.1.0",
"gulp-jscs-custom": "^0.1.6",
"gulp-jshint": "^2.1.0",
"gulp-jshint-xml-file-reporter": "^0.5.1",
"gulp-shell": "^0.8.0",
"jasmine-reporters": "~2.5.2",
"jsdoc": "3.4.0",
"jshint": "^2.13.6",
"jshint-stylish": "^2.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"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"
}