-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.73 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 4.73 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@cathayddt/bdk",
"version": "3.4.1",
"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)",
"yorkchung (https://github.com/yorkchung)"
],
"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' 'src/**/*.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:fabric": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk nyc --temp-dir ./coverage/fabric/.nyc_output --report-dir ./coverage/fabric mocha --reporter spec --require ts-node/register './test/fabric/**/*.test.ts' --exit",
"test:besu": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk nyc --temp-dir ./coverage/besu/.nyc_output --report-dir ./coverage/besu mocha --reporter spec --require ts-node/register './test/eth/besu/**/*.test.ts' --exit",
"test:quorum": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk nyc --temp-dir ./coverage/quorum/.nyc_output --report-dir ./coverage/quorum mocha --reporter spec --require ts-node/register './test/eth/quorum/**/*.test.ts' --exit",
"test:others": "NODE_ENV=testing BDK_PATH=$(pwd)/test/bdk BDK_DOCKER_HOST_PATH=$(pwd)/test/bdk nyc --temp-dir ./coverage/others/.nyc_output --report-dir ./coverage/others mocha --reporter spec --require ts-node/register './test/{hello,wallet,bdk}/**/*.test.ts' --exit",
"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.4.1 --prepend CHANGELOG.md",
"doc:create": "npx typedoc --readme none --out ./api-docs --packages ."
},
"dependencies": {
"axios": "^1.11.0",
"deep-object-diff": "^1.1.0",
"dockerode": "^3.3.5",
"dotenv": "^16.3.1",
"envfile": "^6.18.0",
"ethers": "^6.13.4",
"fs-extra": "^9.1.0",
"git-cliff": "^1.4.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",
"solc": "^0.8.17",
"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",
"mocha": "^11.0.1",
"nodemon": "^3.0.2",
"nyc": "^15.1.0",
"semver": "^7.7.2",
"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"
}
}