-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
63 lines (63 loc) · 1.38 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
{
"name": "three-line-2d",
"version": "1.1.6",
"description": "lines expanded in a vertex shader",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"semistandard": {
"globals": [
"THREE"
]
},
"dependencies": {
"inherits": "^2.0.1",
"object-assign": "^4.0.1",
"polyline-normals": "^2.0.0"
},
"devDependencies": {
"adaptive-bezier-curve": "^1.0.3",
"arc-to": "^1.0.0",
"as-number": "^1.0.0",
"browserify": "^13.0.0",
"budo": "^8.2.1",
"normalize-path-scale": "^2.0.0",
"orbit-controls": "^1.0.4",
"raf-loop": "^1.1.3",
"semistandard": "^7.0.5",
"three": "^0.81.2",
"three-orbit-viewer": "^69.3.0",
"uglify-js": "^2.4.15"
},
"scripts": {
"build": "browserify test/index.js | uglifyjs -cm > bundle.js",
"start": "budo test/index.js:bundle.js --live",
"test": "semistandard"
},
"keywords": [
"three",
"js",
"line",
"render",
"2d",
"join",
"miter",
"thick",
"gl.LINES",
"lines",
"gl",
"polyline"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/three-line-2d.git"
},
"homepage": "https://github.com/mattdesl/three-line-2d",
"bugs": {
"url": "https://github.com/mattdesl/three-line-2d/issues"
}
}