-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 844 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 844 Bytes
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
{
"name": "node-binary-search-tree",
"version": "1.1.1",
"description": "Binary search tree",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --compilers js:babel-core/register --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/lfepp/binary-search-tree"
},
"keywords": [
"binary",
"search",
"tree"
],
"author": "Luke Epp",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/lfepp/binary-search-tree/issues"
},
"homepage": "https://github.com/lfepp/binary-search-tree",
"devDependencies": {
"babel-core": "6.10.4",
"babel-preset-es2015": "6.9.0",
"chai": "3.5.0",
"istanbul": "2.1.0-alpha.2",
"mocha": "2.4.5"
},
"babel": {
"presets": [
"es2015"
]
}
}