forked from xaviergonz/js-angusj-clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "js-angusj-clipper",
"version": "0.20.0",
"description": "Polygon and line clipping and offsetting library for Javascript / Typescript - a port of Angus Johnson's clipper to WebAssembly / Asm.JS",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"scripts": {
"pull-docker-image": "docker pull trzeci/emscripten",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test && node src/fix-clipper.js",
"travis": "npm run prepublishOnly",
"test": "jest -t unit",
"benchmark": "jest -t benchmark",
"lint": "tslint -p .",
"clean": "rimraf ./dist",
"build": "npm run build:ts && npm run build:asm",
"build:ts": "tsc -p .",
"build:asm": "npm run pull-docker-image && node build/compile-asm",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prettier-all": "prettier --write \"src/lib/**/*.ts\" \"build/**/*.js\" \"__tests__/**/*.ts\""
},
"files": [
"dist/lib",
"dist/wasm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rlcolli4/js-angusj-clipper.git"
},
"keywords": [
"polygon",
"clipping",
"offseting",
"boolean",
"geometry"
],
"author": "Javier Gonzalez Garces <[email protected]>",
"contributors": [
"Robert Collins <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xaviergonz/js-angusj-clipper/issues"
},
"homepage": "https://github.com/Rlcolli4/js-angusj-clipper/blob/master/README.md",
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.3.1",
"jest": "^23.1.0",
"prettier": "^1.13.4",
"rimraf": "^2.6.2",
"shelljs": "^0.8.2",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.9.1"
},
"dependencies": {
"replace-in-file": "^3.4.0"
}
}