-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "algorithms.coffee",
"version": "0.4.0",
"description":
"Classic algorithms and data structures in coffeescript. Making the World a better place, with coffee.",
"directories": {
"lib": "build",
"test": "test"
},
"main": "algorithms",
"dependencies": {},
"devDependencies": {
"grunt": "latest",
"grunt-cli": "latest",
"grunt-contrib-clean": "latest",
"mocha": "latest",
"chai": "latest",
"grunt-mocha-test": "latest",
"grunt-mkdir": "latest",
"grunt-contrib-coffee": "latest",
"grunt-coffeelint": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-concat": "latest"
},
"scripts": {
"test": "grunt --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/BrunoRB/algorithms.coffee.git"
},
"keywords": [
"algorithms",
"data structures",
"coffeescript"
],
"author": "Bruno Roberto Búrigo <[email protected]>",
"contributors" : [
"Tayllan Búrigo <[email protected]>"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/BrunoRB/algorithms.coffee/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.10.0"
},
"bugs": {
"url": "https://github.com/BrunoRB/algorithms.coffee/issues"
},
"homepage": "https://github.com/BrunoRB/algorithms.coffee"
}