Gaëtan Renaudeau 44249e0dd4 v3.10.0
2017-08-09 09:58:49 +02:00

45 lines
1.2 KiB
JSON

{
"name": "gl-react-dom",
"version": "3.10.0",
"license": "MIT",
"author": "Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>",
"description": "DOM implementation of gl-react, an universal React library to write and compose WebGL shaders",
"keywords": [
"gl-react",
"gl",
"opengl",
"react",
"react-dom",
"react-component"
],
"main": "lib/index.js",
"files": [
"src",
"lib",
".flowconfig",
"README.md",
"LICENSE",
"gl-react-dom.js"
],
"browserify-shim": {
"gl-react": "global:GLReact",
"react": "global:React"
},
"peerDependencies": {
"gl-react": "^3.10.0",
"react": "*"
},
"devDependencies": {
"gl-react": "^3.10.0"
},
"dependencies": {
"invariant": "^2.2.1",
"prop-types": "^15.5.8",
"raf": "^3.3.0"
},
"scripts": {
"prepublish": "cd ../.. && export PATH=$(npm bin):$PATH && cd - && rm -rf lib gl-react-dom.js && babel --source-maps -d lib src && flow-copy-source -v src lib && browserify lib/index.js -t [ browserify-shim ] --standalone GLReactDOM > gl-react-dom.js",
"watch": "cd ../.. && export PATH=$(npm bin):$PATH && cd - && babel --watch --source-maps -d lib src"
}
}