-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.67 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
89
90
91
92
93
94
95
96
97
98
{
"name": "@blockfrost/blockfrost-cardano-cli",
"description": "Drop-in(ish) replacement for cardano-cli powered by Blockfrost",
"version": "1.0.0",
"author": "blockfrost.io",
"bin": {
"bcc": "./bin/run",
"blockfrost-cardano-cli": "./bin/run"
},
"bugs": "https://github.com/blockfrost/blockfrost-cardano-cli/issues",
"dependencies": {
"@blockfrost/blockfrost-js": "^5.0.0-beta.1",
"@oclif/core": "^1.14.2",
"@oclif/plugin-help": "^5.1.12",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.0",
"cli-ux": "^6.0.9",
"safe-stable-stringify": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^28.1.3",
"make-coverage-badge": "^1.2.0",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"oclif": "^3.1.2",
"prettier": "^2.7.1",
"stdout-stderr": "^0.1.13",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/blockfrost/blockfrost-cardano-cli",
"keywords": [
"blockfrost",
"cardano",
"cardano-cli",
"blockchain"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"hooks": {
"command_not_found": "./lib/hooks/cardano-cli"
},
"bin": "bcc",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"query": {
"description": "Node query commands"
},
"transaction": {
"description": "Transaction commands"
}
},
"macos": {
"identifier": "io.blockfrost.cardanocli"
}
},
"repository": "blockfrost/blockfrost-cardano-cli",
"scripts": {
"build": "rm -rf lib && tsc -b",
"dev": "./bin/dev",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "yarn run-s 'test:*'",
"test:unit": "jest",
"test:badges": "make-coverage-badge --output-path ./docs/badge-coverage.svg",
"lint": "eslint . --ext .ts",
"type-check": "tsc -p tsconfig.types.json",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts",
"packageManager": "yarn@3.2.2"
}