forked from valora-xyz/react-native-geth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 KB
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
{
"name": "react-native-geth",
"version": "1.0.0",
"description": "React Native module to run a celo light client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/android",
"/ios",
"/lib",
"/.buckconfig",
"/app.json",
"/react-native-geth.podspec"
],
"scripts": {
"tsc": "tsc -p ./tsconfig.json",
"test": "eslint src && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"clean": "rm -rf lib/**",
"build": "npm run clean && npm run tsc",
"prepare": "npm run build"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-swift": "^1.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-node": "^0.3.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.2.0",
"http-signature": "^1.2.0",
"typescript": "^3.9.7"
},
"rnpm": {
"android": {
"buildPatch": " compile 'org.ethereum:geth:1.8.3'\n",
"packageImportPath": "import com.reactnativegeth.RNGethPackage;",
"packageInstance": "new RNGethPackage()",
"sourceDir": "./android"
},
"commands": {
"postlink": "node node_modules/react-native-geth/scripts/rnpm-postlink"
}
},
"author": [
"Yassine Kassy <y.kassy@me.com> (https://www.linkedin.com/in/yassinekassy)",
"Bogdan Dumitru <bogdan@clabs.co>"
],
"license": "MIT",
"keywords": [
"celo",
"go",
"react",
"react-native",
"android",
"ios"
],
"repository": {
"type": "git",
"url": "https://github.com/celo-org/react-native-geth.git"
},
"bugs": {
"url": "https://github.com/celo-org/react-native-geth/issues"
},
"homepage": "https://github.com/celo-org/react-native-geth"
}