-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
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
{
"name": "@hyperledgendary/runhfsc",
"version": "0.0.6",
"description": "Simple CLI for testing transactions",
"bin": {
"runhfsc": "dist/main.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "npm run format && npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty && npm shrinkwrap",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperledgendary/runhfsc"
},
"keywords": [
"fabric-ledger",
"Hyperledger Fabric",
"Fabric Ledger"
],
"author": "",
"license": "Apache 2.0",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.21",
"@types/prettyjson": "^0.0.30",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.0"
},
"dependencies": {
"@grpc/grpc-js": "^1.6.2",
"@hyperledger/fabric-gateway": "^1.0.1",
"@types/pino": "^7.0.5",
"@types/source-map-support": "^0.5.4",
"chalk": "^4.1.2",
"cliffy": "^2.4.3",
"env-var": "^7.1.1",
"js-yaml": "^4.1.0",
"jsonata": "^1.8.6",
"pino": "^7.9.2",
"prettyjson": "^1.2.5",
"source-map-support": "^0.5.21",
"standard-version": "^9.3.2",
"yargs": "^17.3.1"
},
"engines": {
"node": ">=12.15.0"
}
}