-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 761 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 761 Bytes
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
{
"name": "poly-decomp",
"version": "0.3.0",
"description": "Convex decomposition for 2D polygons",
"author": "Stefan Hedman <schteppe@gmail.com> (http://steffe.se)",
"keywords": [
"convex",
"decomposition",
"polygon",
"2d"
],
"engines": {
"node": "*"
},
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/schteppe/poly-decomp.js.git"
},
"bugs": {
"url": "https://github.com/schteppe/poly-decomp.js/issues"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify": "^3.44.2",
"grunt": "^1.0.1",
"grunt-browserify": "^2.0.8",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-uglify": "^0.4.1",
"nodeunit": "^0.9.1"
}
}