-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "react-native-hgraph",
"version": "0.5.0",
"description": "React Native implementation of hGraph",
"main": "index.js",
"scripts": {
"update:modules": "./scripts/update_modules.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-native",
"hGraph"
],
"author": "Nabyl Bennouri <[email protected]> (http://www.citizenhealth.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/citizenhealth/react-native-hgraph.git"
},
"license": "GPL-3.0",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"rnpm": {
"android": {
"buildPatch": " implementation 'react-native-hgraph'",
"packageImportPath": "import io.citizenhealth.RNReactNativeHgraphPackage;",
"packageInstance": "new RNReactNativeHgraphPackage()",
"sourceDir": "./android"
},
"ios": {
"project": "ios/RNReactNativeHgraph.xcodeproj"
}
},
"dependencies": {
"d3-ease": "^2.0.0",
"d3-format": "^2.0.0",
"d3-scale": "^3.2.2",
"d3-shape": "^2.0.0",
"prop-types": "^15.6.1",
"react-move": "^6.4.0"
}
}