-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 779 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
{
"name": "nd-binary-indexed-tree",
"version": "1.0.0",
"description": "N-dimensional Binary Indexed Tree",
"author": "Adam Hull <adam@hmlad.com>",
"keywords": [
"fenwick",
"tree",
"prefix",
"sum",
"binary indexed",
"2d",
"3d"
],
"main": "nd_binary_indexed_tree",
"repository": {
"type": "git",
"url": "git://github.com/hurrymaplelad/nd-binary-indexed-tree.git"
},
"homepage": "https://github.com/hurrymaplelad/nd-binary-indexed-tree",
"bugs": "https://github.com/hurrymaplelad/nd-binary-indexed-tree/issues",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"jshint": "*",
"mocha": "^3.x.x"
},
"scripts": {
"test": "jshint *.js && mocha"
},
"jshintConfig": {
"esversion": 6
}
}