-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "verb-nurbs",
"version": "3.0.3",
"author": "pboyer <[email protected]>",
"description": "A library for creating and manipulating NURBS surfaces and curves in many languages",
"repository": {
"type": "git",
"url": "https://github.com/pboyer/verb.git"
},
"main": "build/js/verb.js",
"unpkg": "build/js/verb.min.js",
"module": "build/js//verb.es.js",
"scripts": {
"build": "haxe buildjs.hxml",
"package": "rollup --config",
"test": "mocha"
},
"keywords": [
"NURBS",
"geometry",
"cad",
"surface",
"curve",
"spline",
"mesh"
],
"files": [
"LICENSE",
"README.md",
"build",
"buildcpp.hxml",
"buildcs.hxml",
"buildjs.hxml",
"buildphp.hxml",
"buildpython.hxml",
"examples",
"package-lock.json",
"package.json",
"rollup.config.mjs",
"src",
"test",
"verb.iml"
],
"dependencies": {
"web-worker": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"mocha": "^10.6.0",
"rollup": "^4.18.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"should": "^13.2.3"
},
"license": "MIT"
}