-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "earcut",
"version": "3.2.3",
"description": "The fastest and smallest JavaScript polygon triangulation library for your WebGL apps",
"main": "src/earcut.js",
"type": "module",
"sideEffects": false,
"exports": "./src/earcut.js",
"types": "src/earcut.d.ts",
"files": [
"src/earcut.js",
"src/earcut.d.ts",
"dist/earcut.min.js",
"dist/earcut.dev.js"
],
"scripts": {
"pretest": "eslint src test/test.js bench/*.js viz/viz.js && tsc",
"test": "node --test",
"bench": "node bench/bench-tiles.js",
"build": "rollup -c",
"prepublishOnly": "npm test && npm run build",
"cov": "node --test --experimental-test-coverage"
},
"author": "Volodymyr Agafonkin",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-terser": "^1.0.0",
"eslint": "^10.11.0",
"eslint-config-mourner": "^5.0.1",
"rollup": "^4.63.4",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/earcut.git"
},
"allowScripts": {
"fsevents@2.3.3": true
}
}