This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "@hyperledger-labs/weft",
"version": "0.2.2",
"description": "Utility CLI to help with using Hyperledger Fabric",
"bin": {
"weft": "lib/cli.js"
},
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/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",
"release": "standard-version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-labs/weft"
},
"keywords": [
"fabric-ledger",
"Hyperledger Fabric",
"Fabric Ledger"
],
"author": "",
"license": "Apache 2.0",
"devDependencies": {
"@types/dockerode": "^3.3.14",
"@types/jest": "^28.1.2",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "^15.14.0",
"@types/rimraf": "^3.0.2",
"@types/tar-stream": "^2.2.2",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^28.1.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/ignore-walk": "^4.0.0",
"@types/source-map-support": "^0.5.4",
"chalk": "^4.1.1",
"dockerode": "^3.3.4",
"fabric-ca-client": "^2.2.13",
"fabric-network": "^2.2.13",
"fabric-wallet-migration": "^0.2.0",
"ignore-walk": "^5.0.1",
"js-yaml": "^4.1.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"source-map-support": "^0.5.21",
"tar-stream": "^2.2.0",
"yargs": "^17.5.1"
},
"engines": {
"node": ">=14.0.0"
}
}