-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "gl-react-dom",
"version": "2.2.9",
"description": "WebGL bindings for react to implement complex effects over images and content, in the descriptive VDOM paradigm",
"main": "lib/index.js",
"scripts": {
"compile": "rm -rf lib/ && babel --source-maps -d lib src && browserify lib/index.js -t [ browserify-shim ] --standalone GLReactDOM > gl-react-dom.js",
"prepublish": "npm run compile"
},
"browserify-shim": {
"gl-react": "global:GL",
"react": "global:React"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12"
},
"peerDependencies": {
"react": "*",
"gl-react": "^2.2.0"
},
"dependencies": {
"browserify-shim": "^3.8.12",
"gl-fbo": "2.0.5",
"gl-shader": "4.2.0",
"gl-texture2d": "2.0.11",
"invariant": "2.2.1",
"performance-now": "0.2.0",
"promise-defer": "1.0.0",
"prop-types": "^15.6.0",
"raf": "3.3.0",
"typedarray-pool": "1.1.0",
"vendor-prefix": "0.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectSeptemberInc/gl-react-dom.git"
},
"keywords": [
"react",
"react-component",
"gl",
"webgl",
"stackgl"
],
"author": "Project September <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProjectSeptemberInc/gl-react-dom/issues"
},
"homepage": "https://github.com/ProjectSeptemberInc/gl-react-dom#readme"
}