-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 KB
/
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
38
39
40
41
42
{
"name" : "quadtree2",
"description" : "JavaScript implementation of quadtree datastructure for collision detection.",
"author" : "peters <[email protected]>",
"version" : "0.6.0",
"main" : "src/quadtree2.js",
"license" : "MIT",
"licenseUrl" : "http://www.opensource.org/licenses/mit-license.php",
"homepage" : "http://p1100i.github.io/quadtree2.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/p1100i/quadtree2.js"
},
"engines" : {
"node": ">= 0.10.0"
},
"scripts" : {
"test" : "mocha test/spec/**/*.spec.js",
"test-watch" : "grunt watch",
"build" : "grunt"
},
"dependencies" : {
"vec2" : "1.4.0"
},
"devDependencies": {
"blanket" : "latest",
"should" : "latest",
"grunt" : "latest",
"grunt-cli" : "latest",
"grunt-browserify" : "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch" : "latest",
"grunt-contrib-uglify": "latest",
"grunt-mocha-test" : "latest"
},
"keywords": [
"quadtree",
"2d",
"collision",
"detection"
]
}