forked from velipso/polybooljs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 851 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
37
38
{
"name": "@prodigy/polybooljs",
"version": "1.0.4",
"description": "Boolean operations on polygons (union, intersection, difference, xor)",
"main": "index.js",
"scripts": {
"build": "browserify index.js -o dist/polybool.js && uglifyjs dist/polybool.js --comments > dist/polybool.min.js",
"test": "jest --config ./jest.config.js --maxWorkers=2"
},
"repository": {
"type": "git",
"url": "https://github.com/SMARTeacher/polybooljs"
},
"keywords": [
"polygon",
"union",
"intersect",
"intersection",
"difference",
"diff",
"xor",
"boolean",
"clipping",
"clip"
],
"author": {
"name": "Chris Light"
},
"dependencies": {
"earcut": "2.1.5"
},
"devDependencies": {
"browserify": "16.5.0",
"jest": "^24.9.0",
"uglify-js": "3.6.0"
},
"license": "MIT"
}