forked from CodingTrain/QuadTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 813 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
{
"name": "ct-quadtree",
"version": "0.0.1",
"description": "Library for creating and searching Quad Trees",
"main": "quadtree.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "nyc --reporter=html mocha",
"test-watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingTrain/QuadTree.git"
},
"keywords": [
"quadtree",
"quad",
"tree",
"coding",
"train"
],
"author": "Coding Train Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingTrain/QuadTree/issues"
},
"homepage": "https://github.com/CodingTrain/QuadTree#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"sinon": "^4.4.9"
},
"dependencies": {}
}