-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "coinkite-tap-protocol-js",
"version": "0.0.1",
"description": "Coinkite's tap-protocol to support Tapsigner and Satcard in Javascript",
"main": "index.ts",
"type": "module",
"scripts": {
"prepare": "install-peers",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prettier": "npx prettier --write .",
"lint": "npx eslint '**/*.ts' --ignore-pattern node_modules/"
},
"keywords": [
"coinkite_tap_protocol-js",
"js-coinkite_tap_protocol",
"cointap-js",
"js-cointap"
],
"author": "Praneeth G",
"license": "MIT",
"dependencies": {
"@ellipticoin/cbor": "^1.0.4",
"bech32": "2.0.0",
"bip32": "4.0.0",
"bs58": "5.0.0",
"buf-b32": "2.2.0",
"buffer-xor": "2.0.2",
"js-sha256": "0.9.0",
"ripemd160": "2.0.2",
"secp256k1": "4.0.3",
"typescript": "4.7.4"
},
"peerDependencies": {
"react-native": ">=0.60.0",
"react-native-nfc-manager": ">=3.13.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-jest": "^28.1.3",
"eslint": "^8.21.0",
"install-peers-cli": "^2.2.0",
"jest": "^28.1.3"
}
}