-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-native-zcash",
"version": "0.9.5",
"description": "Zcash library for React Native",
"homepage": "https://github.com/EdgeApp/react-native-zcash",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/EdgeApp/react-native-zcash.git"
},
"license": "MIT",
"author": "Airbitz, Inc.",
"contributors": [
"William Swanson <[email protected]>",
"Paul Puey <[email protected]>",
"Matthew Piché <[email protected]>",
"Kevin Gorham <[email protected]>"
],
"main": "lib/rnzcash.rn.js",
"types": "lib/src/react-native.d.ts",
"files": [
"/android/build.gradle",
"/android/src/",
"/CHANGELOG.md",
"/ios/",
"/lib/",
"/LICENSE",
"/package.json",
"/react-native-zcash.podspec",
"/README.md",
"/src/"
],
"scripts": {
"build": "(cd android && gradle assemble -DheapDumpOnOutOfMemoryError=false)",
"fix-kotlin": "ktlint --format 'android/src/**/*.kt'",
"fix-swift": "swift-format format -i ios/RNZcash.swift",
"fix": "npm run lint -- --fix",
"lint": "eslint .",
"precommit": "lint-staged && npm run prepare",
"prepack": "npm run update-checkpoints && npm run update-sources",
"prepare": "husky install && rimraf lib && rollup -c && tsc",
"update-checkpoints": "node -r sucrase/register scripts/updateCheckpoints.ts",
"update-sources": "node -r sucrase/register ./scripts/updateSources.ts"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"dependencies": {
"biggystring": "^4.2.3",
"rfc4648": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@grpc/grpc-js": "^1.8.20",
"@types/node": "^14.0.5",
"@types/react-native": "^0.62.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.0.1",
"babel-eslint": "^10.1.0",
"disklet": "^0.4.6",
"eslint": "^7.1.0",
"eslint-config-standard-kit": "^0.14.4",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^7.0.0",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.9",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-flow-entry": "^0.3.4",
"rollup-plugin-node-resolve": "^5.2.0",
"sucrase": "^3.15.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react-native": ">=0.47.0 <1.0.0"
}
}