forked from regl-project/regl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.6 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
{
"name": "regl",
"version": "0.10.0",
"description": "Regl is a fast functional reactive abstraction for WebGL.",
"main": "regl.js",
"directories": {
"example": "example"
},
"dependencies": {},
"devDependencies": {
"angle-normals": "^1.0.0",
"baboon-image": "^2.0.0",
"bl": "^1.1.2",
"browserify": "^13.0.0",
"budo": "^8.1.0",
"bunny": "^1.0.1",
"canvas-fit": "^1.5.0",
"canvas-orbit-camera": "^1.0.2",
"control-panel": "^1.2.0",
"falafel": "^1.2.0",
"faucet": "0.0.1",
"getusermedia": "^1.3.7",
"git-commits": "^1.2.0",
"git-parse-commit": "^1.0.0",
"gl": "^4.0.1",
"gl-mat4": "^1.1.4",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"glob": "^7.0.3",
"google-closure-compiler": "^20160315.2.0",
"hsv2rgb": "^1.1.0",
"indexhtmlify": "^1.2.1",
"install": "^0.8.1",
"istanbul": "^0.4.3",
"mkdirp": "^0.5.1",
"mouse-change": "^1.3.0",
"ncp": "^2.0.0",
"parse-dds": "^1.2.1",
"present": "^1.0.0",
"primitive-sphere": "^2.0.0",
"regl-stats-widget": "0.0.1",
"resl": "^1.0.0",
"runscript": "^1.1.0",
"snazzy": "^3.0.0",
"standard": "^6.0.7",
"tap-browser-color": "^0.1.2",
"tape": "^4.4.0",
"through2": "^2.0.1",
"vectorize-text": "^3.0.2"
},
"scripts": {
"mytest": "standard | snazzy && tape test/stats.js",
"test": "standard | snazzy && tape test/util/index.js | faucet",
"test-browser": "budo test/util/browser.js --open",
"cover": "istanbul cover test/util/index.js",
"bench-browser": "budo bench/bench.js --open",
"bench-node": "node bench/bench.js",
"bench-graph": "node bench/bench-graph.js",
"bench-history": "node bench/bench-history",
"build": "npm run build-script && npm run build-min && npm run build-bench && npm run build-gallery",
"build-script": "browserify regl.js --standalone reglInit > dist/regl.js",
"build-min": "node bin/build-min.js",
"build-bench": "browserify bench/bench.js | indexhtmlify > www/bench.html",
"build-gallery": "node bin/build-gallery.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikolalysenko/regl.git"
},
"keywords": [
"webgl",
"stackgl",
"regl",
"gl",
"graphics",
"computer graphics",
"opengl",
"glsl",
"data",
"flow",
"reactive",
"functional"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/regl/issues"
},
"standard": {
"ignore": [
"dist/*",
"www/*"
]
},
"homepage": "https://mikolalysenko.github.io/regl"
}