-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "buckets-js",
"simpleName": "buckets",
"description": "Buckets is a complete, fully tested and documented data structure library written in pure JavaScript.",
"version": "1.98.2",
"author": {
"name" : "Mauricio Santos",
"url" : "https://github.com/mauriciosantos"
},
"keywords": [
"buckets",
"data",
"structure",
"linked",
"list",
"heap",
"stack",
"queue",
"priority",
"binary",
"tree",
"set",
"dictionary",
"map"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mauriciosantos/buckets.git"
},
"homepage": "https://github.com/mauriciosantos/Buckets-JS",
"dependencies": {},
"main": "dist/buckets.min.js",
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jasmine": "^1.0.3",
"grunt-contrib-uglify": "^0.11.0",
"grunt-gh-pages": "^2.0.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-shell": "^1.1.2",
"grunt-umd": "^2.4.0",
"jsdoc2": "^2.4.0",
"load-grunt-tasks": "^3.5.2"
}
}