-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
133 lines (133 loc) · 3.2 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
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "axis3d",
"version": "0.6.3",
"description": "Minimal functional graphics library.",
"scripts": {
"dependency-check": "make lib && cd lib && dependency-check .",
"test": "make test",
"size": "size-limit"
},
"size-limit": [
{
"path": "lib/index.js",
"babili": true,
"limit": "90 KB"
}
],
"keywords": [
"3d",
"regl",
"axis",
"webgl",
"axis3d",
"graphics"
],
"main": "index.js",
"author": "Joseph Werle <werle@littlstar.com>",
"license": "MIT",
"dependencies": {
"@littlstar/regl": "^1.3.1",
"array-flatten": "^2.1.1",
"bound-points": "^1.0.0",
"clamp": "^1.0.1",
"debug": "^2.2.0",
"defined": "^1.0.0",
"dom-events": "^0.1.1",
"extend": "^3.0.1",
"eye-vector": "^1.0.0",
"gl-mat3": "^1.0.0",
"gl-mat4": "^1.1.4",
"gl-quat": "^1.0.0",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"gl-vec4": "^1.0.1",
"global": "^4.3.1",
"glsl-inject-defines": "^1.0.3",
"glsl-token-defines": "^1.0.0",
"glsl-token-string": "^1.0.1",
"glsl-tokenizer": "^2.1.2",
"glslify": "^6.1.0",
"is-typedarray": "^1.0.0",
"mesh-reindex": "^1.0.0",
"normals": "^1.1.0",
"prepr": "^1.1.1",
"regl-combine": "^1.0.1",
"regl-extend": "^1.0.2",
"string-hash": "^1.1.3",
"unindex-mesh": "^2.0.0"
},
"standard": {
"ignore": [
"build",
"dist",
"esdoc",
"example",
"extras",
"lib",
"node_modules",
"plugins",
"scripts",
"public"
]
},
"devDependencies": {
"babel-cli": "^6.x.0",
"babel-core": "^6.x.0",
"babel-eslint": "^6.1.2",
"babel-plugin-glslify": "github:littlstar/babel-plugin-glslify",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-dead-code-elimination": "^2.2.2",
"babel-plugin-transform-define": "^1.2.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"budo": "^10.0.4",
"bunny": "^1.0.1",
"colortape": "^0.1.2",
"control-panel": "^1.2.0",
"dependency-check": "^2.9.1",
"derequire": "^2.0.6",
"devtool": "^2.3.1",
"domready": "^1.0.8",
"eases": "^1.0.8",
"faucet": "^0.0.1",
"float-equal": "^1.0.0",
"glsl-noise": "0.0.0",
"glslify-babel": "^1.0.1",
"primitive-cube": "^2.0.1",
"primitive-plane": "^2.0.0",
"primitive-quad": "^2.0.0",
"raf": "^3.4.0",
"rollupify": "^0.3.4",
"screen-projected-lines": "^1.2.0",
"size-limit": "^0.8.1",
"snowden": "^1.0.1",
"standard": "^8.0.0",
"stats.js": "^0.17.0",
"tape": "^4.6.3",
"uglify-js": "^3.0.14",
"uglifyify": "^3.0.4",
"yo-yo": "^1.4.1"
},
"directories": {
"doc": "doc",
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/littlstar/axis3d.git"
},
"bugs": {
"url": "https://github.com/littlstar/axis3d/issues"
},
"homepage": "https://github.com/littlstar/axis3d#readme",
"contributors": [
{
"name": "Vanessa Pyne",
"email": "vip@littlstar.com"
}
]
}