-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
{
"name": "svg-mesh-3d",
"version": "1.1.0",
"description": "converts a SVG path to a 3D mesh",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"bound-points": "^1.0.0",
"cdt2d": "^1.0.0",
"clean-pslg": "^1.1.0",
"normalize-path-scale": "^2.0.0",
"object-assign": "^4.0.1",
"parse-svg-path": "^0.1.1",
"random-float": "^1.0.0",
"simplify-path": "^1.1.0",
"svg-path-contours": "^2.0.0"
},
"devDependencies": {
"array-shuffle": "^1.0.0",
"babelify": "^6.3.0",
"brfs": "^1.4.1",
"browserify": "^11.2.0",
"budo": "^5.1.0",
"canvas-loop": "^1.0.6",
"draw-triangles-2d": "^1.0.0",
"ecstatic": "^2.0.0",
"extract-svg-path": "^2.1.0",
"garnish": "^3.2.1",
"gl-vec3": "^1.0.3",
"load-svg": "^1.0.0",
"mesh-reindex": "^1.0.0",
"three": "^0.69.0",
"three-simplicial-complex": "^69.0.6",
"triangle-centroid": "^1.0.0",
"tweenr": "^2.1.3",
"uglify-js": "^2.4.24",
"unindex-mesh": "^1.0.1"
},
"scripts": {
"test": "node test.js",
"2d": "budo demo/2d.js:bundle.js --live | garnish",
"start": "budo demo/:bundle.js --live -- -t babelify -t brfs | garnish",
"build": "browserify demo/index.js -t babelify -t brfs | uglifyjs -cm > bundle.js"
},
"keywords": [
"svg",
"triangulate",
"mesh",
"path",
"normalize",
"scale"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/svg-mesh-3d.git"
},
"homepage": "https://github.com/mattdesl/svg-mesh-3d",
"bugs": {
"url": "https://github.com/mattdesl/svg-mesh-3d/issues"
}
}