-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fablo",
"version": "2.5.0",
"description": "Fablo is a simple tool to generate the Hyperledger Fabric blockchain network and run it on Docker. It supports RAFT and solo consensus protocols, multiple organizations and channels, chaincode installation and upgrade.",
"author": "Piotr Hejwowski <piotr.hejwowski@gmail.com>, Jakub Dzikowski <jakub@dzikowski.online>",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger-labs/fablo.git"
},
"keywords": [
"hyperledger fabric",
"blockchain",
"blockchain network",
"config generator",
"CI"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperledger-labs/fablo/issues"
},
"homepage": "https://github.com/hyperledger-labs/fablo#readme",
"scripts": {
"clean": "rimraf dist",
"build": "shx rm -rf dist && tsc",
"build:dist": "npm run clean && tsc -p tsconfig-dist.json && npm run copydeps",
"version": "oclif readme && git add README.md",
"copydeps": "copyfiles --all --up 1 'src/*/templates/**' dist",
"lint": "eslint --fix src e2e && madge --circular --warning src e2e && ejslint src",
"test:unit": "jest src",
"test:e2e": "jest e2e --runInBand e2e/fabloCommands.test.ts",
"test:e2e-update": "./fablo-build.sh && jest e2e --runInBand --updateSnapshot && ./lint.sh"
},
"dependencies": {
"@oclif/core": "^4.8.0",
"chalk": "^4.1.0",
"ejs": "^3.1.9",
"fs-extra": "^11.3.2",
"got": "^11.8.5",
"js-yaml": "^4.1.0",
"jsonschema": "^1.2.6",
"lodash": "^4.17.23",
"shx": "^0.4.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^27.0.1",
"@types/jest-json-schema": "^2.1.3",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^18.19.130",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copyfiles": "2.4.1",
"ejs-lint": "^2.0.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.7.0",
"jest-json-schema": "^6.1.0",
"madge": "^4.0.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.4",
"ts-loader": "^9.1.0",
"ts-node": "^9.1.1",
"tsx": "^4.21.0",
"typescript": "^4.2.4"
},
"bin": {
"fablo": "./bin/run.js"
},
"oclif": {
"bin": "fablo",
"commands": "./dist/commands",
"dirname": "fablo",
"topicSeparator": " "
}
}