-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
121 lines (121 loc) · 2.99 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "penplot",
"version": "3.0.0",
"description": "a lightweight tool for generative 2D line art",
"main": "./lib/penplot.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"browser": {
"./lib/create-canvas": "./lib/create-canvas/browser.js"
},
"dependencies": {
"acorn": "^4.0.11",
"alpha-complex": "^1.0.0",
"array-almost-equal": "^1.0.0",
"ast-types": "^0.9.5",
"babel-plugin-module-resolver": "^2.5.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"body": "^5.1.0",
"body-parser": "^1.17.1",
"bound-points": "^1.0.0",
"budo": "^10.0.3",
"bunny": "^1.0.1",
"cdt2d": "^1.0.0",
"chalk": "^1.1.3",
"clamp": "^1.0.1",
"color-style": "^1.0.0",
"defined": "^1.0.0",
"delaunay-triangulate": "^1.1.6",
"dom-css": "^2.1.0",
"downloads-folder": "^1.0.0",
"envify": "^4.1.0",
"escodegen": "^1.8.1",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"glob": "^7.1.1",
"globby": "^6.1.0",
"insert-css": "^2.0.0",
"installify": "^1.1.0",
"is-buffer": "^1.1.4",
"is-promise": "^2.1.0",
"keycode": "^2.1.8",
"lerp": "^1.0.3",
"lineclip": "^1.1.5",
"loud-rejection": "^1.6.0",
"map-limit": "0.0.1",
"mapify": "^0.1.0",
"maxstache": "^1.0.7",
"merge-vertices": "^1.0.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.17.1",
"new-array": "^1.0.0",
"object-assign": "^4.1.1",
"parse-unit": "^1.0.1",
"point-in-triangle": "^1.0.1",
"primitive-cube": "^2.0.0",
"quantize-vertices": "^1.0.2",
"raf-loop": "^1.1.3",
"recast": "^0.11.22",
"remove-orphan-vertices": "^1.0.0",
"rescale-vertices": "^1.0.0",
"seed-random": "^2.2.0",
"simplex-noise": "^2.3.0",
"smoothstep": "^1.0.1",
"split-polygon": "^1.0.0",
"svg-3d-simplicial-complex": "^0.1.1",
"through2": "^2.0.3",
"triangle-centroid": "^1.0.0",
"triangle-incenter": "^1.0.2",
"unreachable-branch-transform": "^0.5.1",
"uuid": "^3.0.1",
"vectors": "^0.1.0",
"vertices-bounding-box": "^1.0.0",
"xhr": "^2.4.0"
},
"devDependencies": {
"color-convert": "^1.9.0",
"css-color-converter": "^1.1.0",
"draw-triangles-2d": "^1.0.0",
"icosphere": "^1.0.0",
"nice-color-palettes": "^2.0.0",
"perspective-camera": "^2.0.1"
},
"scripts": {
"test": "node test.js"
},
"keywords": [
"pen",
"plot",
"plotter",
"plotterart",
"ink",
"svg",
"2d",
"makeblock",
"xy",
"axidraw",
"axidrawv3",
"evil",
"mad",
"scientist"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/penplot.git"
},
"homepage": "https://github.com/mattdesl/penplot",
"bugs": {
"url": "https://github.com/mattdesl/penplot/issues"
},
"bin": {
"penplot": "./bin/index.js"
}
}