-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 860 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
{
"name": "generic-quadtree",
"description": "a generic quadtree for quick range lookup",
"author": "John Doty <[email protected]>",
"version": "1.2.3",
"main": "quadtree.js",
"scripts": {
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"chai": "^1.9.1",
"gulp": "^3.8.8",
"gulp-concat": "^2.4.1",
"gulp-jshint": "^1.8.5",
"gulp-load-plugins": "^0.7.0",
"gulp-mocha": "^1.1.1",
"gulp-notify": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"jshint-stylish": "^1.0.0",
"mocha": "^1.21.4"
},
"license": "MIT",
"keywords": [
"quadtree",
"collision detection",
"space partitioning"
],
"repository": {
"type": "git",
"url": "https://github.com/jrhdoty/generic-quadtree.git"
},
"bugs": "https://github.com/jrhdoty/generic-quadtree/issues"
}