-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "@tacoinfra/harbinger-cli",
"version": "2.0.2",
"description": "This is client software for reading / writing from the BTC / USD oracle. The following contracts are hardcoded: - [Oracle contract to read from](https://you.better-call.dev/carthagenet/KT1XjYrm3AX5Ptw2ZKXTPYE5ZDFWprfdihKb/storage) - [Oracle contract to write to](https://you.better-call.dev/carthagenet/KT1DiFg6TxLgsCFAFmLgc9mBBUdE7TRnQzMG/storage)",
"main": "build/src/cli.js",
"files": [
"build/**/*"
],
"bin": {
"harbinger": "build/src/cli.js",
"hbg": "build/src/cli.js"
},
"scripts": {
"build": "npm run clean && tsc -d",
"clean": "rm -rf ./build",
"lint": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build && chmod +x ./build/src/cli.js",
"test": "echo \"no tests :(\""
},
"author": "Blockscale LLC",
"license": "MIT",
"dependencies": {
"@ledgerhq/hw-transport": "^5.15.0",
"@ledgerhq/hw-transport-node-hid": "^5.16.0",
"@tacoinfra/harbinger-lib": "^2.0.2",
"aws-sdk": "^2.722.0",
"commander": "^5.1.0",
"ts-node": "^8.8.1",
"typescript": "^4.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tacoinfra/harbinger-cli.git"
},
"keywords": [
"tezos",
"oracle",
"harbinger"
],
"bugs": {
"url": "https://github.com/tacoinfra/harbinger-cli/issues"
},
"homepage": "https://github.com/tacoinfra/harbinger-cli#readme",
"devDependencies": {
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
}
}