-
Notifications
You must be signed in to change notification settings - Fork 412
/
package.json
57 lines (57 loc) · 1.74 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "algorithms",
"version": "0.10.0",
"description": "Traditional computer science algorithms and data structures implemented in JavaScript",
"main": "./index.js",
"scripts": {
"lint": "eslint src/",
"test": "mocha -R spec --recursive src/test",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- -R spec --recursive src/test"
},
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^4.0.0",
"eslint-config-google": "^0.8.0",
"istanbul": "^0.4.0",
"mocha": "^3.4.2",
"pre-commit": "^1.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/felipernb/algorithms.js"
},
"keywords": [
"computer science",
"cs",
"algorithms",
"data structures"
],
"author": "Felipe Ribeiro <[email protected]> (http://github.com/felipernb)",
"contributors": [
"eush77 <[email protected]>",
"tayllan <[email protected]>",
"anaran <[email protected]>",
"Joshua Curl <[email protected]>",
"nitinsaroha <[email protected]>",
"Andre P. Oliveira <[email protected]>",
"Iain McDonald <[email protected]>",
"dingshu <[email protected]>",
"Liam Griffiths <[email protected]>",
"BrunoRB <[email protected]>",
"geakstr <[email protected]>",
"Matt R. Wilson <[email protected]>",
"Gaurav Mittal <[email protected]>",
"Juan Lopes <[email protected]>",
"Evandro Eisinger <[email protected]>",
"Gibran Malheiros <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/felipernb/algorithms.js/issues"
},
"homepage": "https://github.com/felipernb/algorithms.js/wiki"
}