-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 955 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 955 Bytes
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
{
"name": "rn-webgl2",
"version": "0.0.1",
"license": "MIT",
"author": "",
"description": "React Native implementation of WebGL2",
"keywords": [
"react",
"webgl",
"opengl",
"react-native"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:itrabbit/react-native-webgl2.git"
},
"peerDependencies": {
"react": "^16.*",
"react-native": "^0.57.*"
},
"scripts": {
"prepublish": "babel --source-maps -d lib src && flow-copy-source -v src lib",
"watch": "babel --watch --source-maps -d lib src"
},
"devDependencies": {
"eslint": "^5.10.0",
"prop-types": "^15.6.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-react": "^7.11.1",
"flow-copy-source": "^2.0.2"
}
}