-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 846 Bytes
/
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
{
"name": "computational-geometry",
"description": "Node.js implementations of some computational geometry algorithms",
"version": "0.2.0",
"author": "Erel Segal-haLevi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/erelsgl/rectangles.git"
},
"dependencies": {
"underscore": "*",
"argminmax": "*",
"seed-random": "*",
"js-combinatorics": "0.5.2",
"async": "*",
"jsclass": "*",
"jsts": "0.14.0",
"system": "*",
"almost-equal": "*"
},
"devDependencies": {
"mocha": ">=1.0.0",
"should": ">=0.6.0"
},
"scripts": {
"test": "mocha",
"install": "browserify client/jsts.js -o client/jsts.bundle.js"
},
"keywords": [
"rectangles",
"optimization",
"geometry",
"computational geometry"
],
"license": "LGPL-2.0+"
}