forked from w8r/GreinerHormann
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "greiner-hormann",
"version": "1.3.0",
"description": "Greiner-Hormann clipping algorithm",
"main": "src/greiner-hormann.js",
"scripts": {
"test": "node test/suite.js",
"watch": "watchify test/js/test.js -o test/js/bundle.js -dv",
"start": "npm run watch & serve",
"sources": "browserify -s greinerHormann src/greiner-hormann.js > dist/greiner-hormann.js"
},
"repository": {
"type": "git",
"url": "https://github.com/platener/GreinerHormann.git"
},
"keywords": [
"polygon",
"clipping",
"intersection",
"leaflet",
"greiner",
"hormann"
],
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/platener/GreinerHormann/issues"
},
"homepage": "https://github.com/platener/GreinerHormann",
"devDependencies": {
"catw": "^0.2.0",
"leaflet": "^0.7.3",
"leaflet-draw": "^0.2.3",
"serve": "^1.4.0",
"watchify": "^2.1.1"
}
}