-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "earcut",
"version": "3.0.1",
"description": "The fastest and smallest JavaScript polygon triangulation library for your WebGL apps",
"main": "src/earcut.js",
"type": "module",
"exports": "./src/earcut.js",
"files": [
"src/earcut.js",
"dist/earcut.min.js",
"dist/earcut.dev.js"
],
"scripts": {
"pretest": "eslint src test/test.js bench/*.js viz/viz.js",
"test": "node --test",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"cov": "node --test --experimental-test-coverage"
},
"author": "Vladimir Agafonkin",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"benchmark": "^2.1.4",
"coveralls": "^3.1.1",
"eslint": "^9.17.0",
"eslint-config-mourner": "^4.0.2",
"rollup": "^4.28.1",
"uglify-js": "^3.19.3",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "mourner",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
}
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/earcut.git"
}
}