-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
70 lines (70 loc) · 2.36 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
{
"name": "generator-fablo",
"version": "2.0.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 <[email protected]>, Jakub Dzikowski <[email protected]>",
"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 generators",
"build": "tsc",
"build:dist": "npm run clean && tsc -p tsconfig-dist.json && npm run copydeps",
"copydeps": "copyfiles --all --up 1 'src/*/templates/**' generators",
"lint": "eslint --fix src e2e && madge --circular --warning src e2e && ejslint src",
"test:unit": "jest src",
"test:e2e": "jest e2e --runInBand",
"test:e2e-update": "./fablo-build.sh && jest e2e --runInBand --updateSnapshot && ./lint.sh"
},
"dependencies": {
"chalk": "^4.1.0",
"got": "^11.8.5",
"js-yaml": "^4.1.0",
"jsonschema": "^1.2.6",
"lodash": "^4.17.21",
"winston": "^2.4.7",
"yeoman-generator": "^5.10.0"
},
"devDependencies": {
"@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-fetch": "^2.5.10",
"@types/yeoman-generator": "^5.2.14",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copyfiles": "2.4.1",
"ejs-lint": "^1.2.0",
"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",
"typescript": "^4.2.4",
"yeoman-test": "^5.1.0"
}
}