-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "vinary-search-tree",
"version": "1.0.11",
"description": "CoffeeScript / JavaScript implementation of my DLL-BEST data structure (i.e. Binary Search Tree with Vine)",
"keywords": [
"javascript",
"coffeescript"
],
"homepage": "https://github.com/dylon/vinary-search-tree-coffeescript",
"bugs": "https://github.com/dylon/vinary-search-tree-coffeescript/issues",
"license": "MIT",
"author": "Dylon Edwards",
"contributors": [
{
"name": "Dylon Edwards",
"email": "[email protected]"
}
],
"main": "./lib/vinary-search-tree/index",
"directories": {
"lib": "./lib/vinary-search-tree"
},
"repository": {
"type": "git",
"url": "https://github.com/dylon/vinary-search-tree-coffeescript.git"
},
"devDependencies": {
"nodeunit": "~0.8.6",
"coffee-script": "~1.7.1",
"wrench": "~1.5.8",
"docco": "~0.6.3"
},
"engines": {
"node": "~0.10.26"
},
"scripts": {
"test": "node ./node_modules/coffee-script/bin/cake test"
}
}