-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "robust-predicates",
"version": "3.0.2",
"description": "Fast robust predicates for computational geometry",
"keywords": [
"computational geometry",
"robust arithmetic"
],
"author": "Vladimir Agafonkin",
"license": "Unlicense",
"type": "module",
"main": "index.js",
"unpkg": "umd/predicates.min.js",
"module": "index.js",
"exports": "./index.js",
"types": "index.d.ts",
"scripts": {
"build": "mkdirp esm && node compile.js",
"lint": "eslint *.js src test/test.js",
"pretest": "npm run lint && npm run build",
"test": "node --test",
"cov": "node --test --experimental-test-coverage",
"bench": "node bench.js",
"prepublishOnly": "npm run test && rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.6.0",
"eslint-config-mourner": "^4.0.1",
"mkdirp": "^3.0.1",
"nextafter": "^1.0.0",
"robust-in-sphere": "^1.2.1",
"robust-orientation": "^1.2.1",
"rollup": "^4.18.0"
},
"files": [
"index.js",
"index.d.ts",
"esm",
"umd"
],
"repository": {
"type": "git",
"url": "https://github.com/mourner/robust-predicates.git"
}
}