-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
102 lines (102 loc) · 3.72 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
99
100
101
102
{
"name": "@cathayddt/bdk",
"version": "3.0.0",
"description": "Blockchain Deploy Kit",
"homepage": "https://github.com/cathayddt/bdk#readme",
"bugs": {
"url": "https://github.com/cathayddt/bdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cathayddt/bdk.git"
},
"license": "Apache-2.0",
"author": "CathayBC",
"contributors": [
"SecondDim (https://github.com/SecondDim)",
"yujugrace (https://github.com/yujugrace)",
"kth-tw (https://github.com/kth-tw)",
"RuiSiang (https://github.com/RuiSiang)",
"PianoChicken (https://github.com/Pianochicken)",
"kidneyweak (https://github.com/kidneyweakx)"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"bdk": "./dist/bdk.js"
},
"scripts": {
"check:node_version": "node check_node_version.js",
"preversion": "npm run eslint && npm run build-ts",
"build-ts": "rm -rf dist && tsc",
"eslint": "eslint -c .eslintrc \"./src/**/*.*(ts|tsx)\" \"./test/**/*.ts\"",
"eslint:fix": "tsc --noEmit && node_modules/.bin/eslint -c .eslintrc ./src/**/*.*(ts|tsx) ./test/**/*.ts --quiet --fix",
"init:autocomplete": "bdk fabric completion > $HOME/.bash_bdk",
"build:console": "ts-node src/console.ts",
"start:dev": "NODE_ENV=development nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' src/console.ts",
"start:dashboard": "NODE_ENV=dashboard nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' src/console.ts",
"test": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk mocha --reporter spec --require ts-node/register ./test/**/*.test.ts --exit",
"test:dev": "nodemon --watch 'test/**/*.test.ts' -e ts,tsx --exec npm run test",
"test:nyan": "NODE_ENV=testing mocha --reporter nyan --require ts-node/register ./test/**/*.test.ts --exit",
"test:quorum": "nyc npm run test -- --grep Quorum",
"test:fabric": "nyc npm run test -- --grep Fabric",
"test:coverage": "nyc npm run test",
"test:json": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk mocha --reporter json --require ts-node/register ./test/**/*.test.ts --exit > test-results.json",
"git:changelog": "git-cliff --unreleased --tag v3.0.0 --prepend CHANGELOG.md",
"doc:create": "npx typedoc --readme none --out ./api-docs --packages ."
},
"dependencies": {
"axios": "^1.6.5",
"deep-object-diff": "^1.1.0",
"dockerode": "^3.3.5",
"dotenv": "^16.3.1",
"envfile": "^6.18.0",
"ethers": "^5.6.5",
"fs-extra": "^9.1.0",
"ink": "^3.2.0",
"ink-select-input": "^4.2.2",
"js-yaml": "^4.1.0",
"ora": "^5.4.1",
"prompts": "^2.4.0",
"react": "^17.0.2",
"rlp": "^3.0.0",
"string-format": "^2.0.0",
"tar": "^6.1.12",
"winston": "^3.3.3",
"yargs": "^16.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/dockerode": "3.2.7",
"@types/fs-extra": "^9.0.9",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/prompts": "^2.0.9",
"@types/react": "^18.2.14",
"@types/sinon": "^9.0.8",
"@types/source-map-support": "^0.5.3",
"@types/string-format": "^2.0.0",
"@types/tar": "^6.1.3",
"@types/triple-beam": "^1.3.2",
"@types/yargs": "^15.0.5",
"ericlint": "^1.1.3",
"eslint-plugin-react": "^7.32.2",
"git-cliff": "^1.2.0",
"mocha": "^9.1.3",
"nodemon": "^3.0.2",
"nyc": "^15.1.0",
"semver": "^7.3.5",
"sinon": "^9.2.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"@cathayddt:registry": "https://npm.pkg.github.com"
}
}