-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.16 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
87
88
{
"name": "@lightninglabs/lnc-rn",
"version": "0.3.2-alpha",
"description": "Lightning Node Connect npm module for React Native",
"main": "dist/commonjs/index.js",
"types": "dist/typescript/index.d.ts",
"react-native": "lib/index",
"source": "lib/index",
"files": [
"android/",
"dist/",
"ios/",
"lib/",
"fetch-libraries.sh",
"lnc-rn.podspec"
],
"scripts": {
"build": "bob build",
"test": "mocha --reporter spec",
"prettier": "prettier --check '**/*.ts*'",
"prettier-write": "prettier --check --write '**/*.ts*'",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn run build",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint",
"version": "yarn run prettier && git add -A lib",
"postversion": "git push && git push --tags",
"fetch-libraries": "bash fetch-libraries.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightninglabs/lnc-rn.git"
},
"keywords": [
"lightning",
"lnd",
"lightning-node-connect",
"lnc",
"react-native"
],
"author": "Evan Kaloudis",
"bugs": {
"url": "https://github.com/lightninglabs/lnc-rn/issues"
},
"homepage": "https://github.com/lightninglabs/lnc-rn#readme",
"dependencies": {
"@lightninglabs/lnc-core": "^0.3.2-alpha"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/runtime": "7.18.9",
"@types/debug": "4.1.7",
"@types/node": "17.0.16",
"@types/react-native": "0.70.2",
"chai": "4.3.6",
"metro-react-native-babel-preset": "0.76.9",
"mocha": "9.2.2",
"prettier": "2.6.0",
"react-native": "0.72.10",
"react-native-builder-bob": "0.18.3",
"ts-loader": "9.2.6",
"ts-node": "10.7.0",
"ts-proto": "1.115.4",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.5.5"
},
"jest": {
"preset": "react-native"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"react-native-builder-bob": {
"source": "lib",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"directories": {
"lib": "lib"
},
"license": "MIT"
}