-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "@floorplanner/quadtree",
"version": "1.0.4",
"description": "A simple quadtree implementation",
"keywords": [
"quadtree",
"floorplanner",
"node"
],
"main": "lib/index.js",
"scripts": {
"prepublish": "babel src --out-dir lib",
"server": "budo html/src/index.js --live -- -t babelify",
"bundle": "browserify html/src/index.js -o html/bundle.js -t [ babelify ]",
"test": "mocha -c"
},
"author": "Tim Knip <[email protected]> (http://www.floorplanner.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"budo": "^11.2.0",
"canvas": "^2.0.0-alpha.11",
"expect.js": "^0.3.1",
"mocha": "^5.0.5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:floorplanner/quadtree.git"
},
"bugs": {
"url": "https://github.com/floorplanner/quadtree/issues"
},
"homepage": "https://github.com/floorplanner/quadtree"
}