forked from chenglou/data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bower.json
44 lines (44 loc) · 959 Bytes
/
bower.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
{
"name": "data-structures",
"version": "1.4.2",
"author": "chenglou <chenglou92@gmail.com>",
"description": "JavaScript data structures written in CoffeeScript.",
"main": "./distribution/browser/data-structures-1.4.2.js",
"ignore": [
"**/.*",
"node_modules",
"components",
"tests",
"source",
"Gruntfile.coffee",
"distribution/*.js",
"distribution/browser/*.min.js"
],
"keywords": [
"data structure",
"linked list",
"list",
"bst",
"binary search tree",
"red black tree",
"tree",
"graph",
"edge",
"queue",
"map",
"hash",
"heap",
"trie"
],
"devDependencies": {
"coffee-script": ">=1.6.0",
"jasmine-node": ">=1.4.0",
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-coffee": "~0.7.0",
"grunt-browserify2": "~0.1.7",
"grunt-contrib-uglify": "~0.2.0",
"grunt-coffeelint": "0.0.6"
},
"license": "MIT"
}