-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
43
{
"name": "grid2",
"description": "JavaScript implementation of a static spatial grid index in two dimension.",
"version": "0.6.0",
"author": "peters <[email protected]>",
"main": "src/grid2.js",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"homepage": "http://p1100i.github.io/grid2.js",
"repository": {
"type": "git",
"url": "https://github.com/p1100i/grid2.js"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha test/**/*.js",
"test-watch": "grunt watch",
"build": "grunt"
},
"keywords": [
"grid",
"spatial",
"2d",
"collision",
"detection"
],
"dependencies": {
"vec2": "^1.6.1"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-simple-mocha": "^0.4.1",
"mocha": "^8.2.1",
"should": "^13.2.3"
}
}