-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
44
45
46
47
48
49
50
51
{
"name": "quadtree-lib",
"version": "1.0.9",
"description": "Efficient quadtrees library written in CoffeeScript.",
"author": "Julien Elbaz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elbywan/quadtree-lib"
},
"bugs": {
"url": "https://github.com/elbywan/quadtree-lib/issues"
},
"main": "./build/js/quadtree.min.js",
"types": "./typings/quadtree.d.ts",
"devDependencies": {
"coffee-coverage": "^2.0.1",
"coffee-script": "^1.12.5",
"coffeelint": "^1.16.0",
"coveralls": "^3.1.1",
"del": "^3.0.0",
"eslint": "^4.5.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-docco": "0.0.4",
"gulp-filter": "^5.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-minify-html": "^1.0.4",
"gulp-mocha": "^10.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.3",
"mocha": "^10.2.0",
"traceur": "^0.0.111"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register -R nyan test/test.coffee && istanbul report text-summary lcov"
},
"keywords": [
"quadtree",
"collision",
"2d",
"data structure"
],
"files": [
"build/",
"typings/"
]
}