Skip to content

Commit f412224

Browse files
committed
v1.0.0
1 parent 5f20e54 commit f412224

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

package.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "@datastructures-js/binary-search-tree",
3+
"version": "1.0.0",
4+
"description": "binary search tree implementation in javascript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "grunt test"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/datastructures-js/binary-search-tree.git"
12+
},
13+
"keywords": [
14+
"binary search tree",
15+
"bst js",
16+
"bst es6",
17+
"binary search tree es6",
18+
"binary search tree js"
19+
],
20+
"author": "Eyas Ranjous <eyas.ranjous@gmail.com>",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/datastructures-js/binary-search-tree/issues"
24+
},
25+
"homepage": "https://github.com/datastructures-js/binary-search-tree#readme",
26+
"devDependencies": {
27+
"chai": "^4.1.2",
28+
"eslint": "^4.19.1",
29+
"eslint-config-airbnb-base": "^12.1.0",
30+
"eslint-plugin-import": "^2.12.0",
31+
"grunt-eslint": "^20.2.0",
32+
"grunt": "^1.0.1",
33+
"grunt-contrib-jshint": "^1.1.0",
34+
"grunt-mocha-istanbul": "^5.0.2",
35+
"grunt-mocha-test": "^0.13.3",
36+
"istanbul": "^0.4.5",
37+
"mocha": "^5.0.0"
38+
}
39+
}

0 commit comments

Comments
 (0)