-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1002 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
{
"name": "arrangement-2d-js",
"version": "1.0.0",
"description": "CGAL 2D Arrangement package example",
"type": "module",
"author": {
"name": "Axel Antoine",
"email": "ax.antoine@gmail.com",
"url": "https://axantoine.com"
},
"main": "build/Arrangement2D.umd.js",
"module": "build/Arrangement2D.esm.js",
"types": "build/Arrangement2D.esm.d.ts",
"scripts": {
"clean": "rm -rf build build-examples",
"build": "emcmake cmake -B build && emmake make -C build",
"build-examples": "rollup -c --environment examples",
"test": "jest",
"lint": "eslint src demo",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"rollup": "^2.75.6",
"rollup-plugin-generate-html-template": "^1.7.0",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"webidl2ts": "^1.0.4"
}
}