-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.79 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
{
"name": "fabric-wallet-migration",
"version": "0.3.0",
"description": "Migration from Hyperledger Fabric 1.4 to 2.0 wallets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"build": "npm-run-all clean compile copy-non-ts-source",
"clean": "rm -rf dist *.tgz scenario/package-lock.json scenario/node_modules",
"compile": "tsc --build tsconfig.build.json",
"copy-non-ts-source": "rsync -rv --prune-empty-dirs --include='*.d.ts' --exclude='*.ts' src/ dist",
"format": "prettier '**/*.{ts,js}' --check",
"format:fix": "prettier '**/*.{ts,js}' --write",
"lint": "eslint",
"scenario": "./runScenario.sh",
"test": "npm-run-all lint format unitTest build scenario",
"unitTest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bestbeforetoday/fabric-wallet-migration.git"
},
"author": {
"name": "Mark S. Lewis",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bestbeforetoday/fabric-wallet-migration/issues"
},
"homepage": "https://github.com/bestbeforetoday/fabric-wallet-migration#readme",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.62",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"fabric-network": "^1.4.13",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "~5.6.0",
"typescript-eslint": "^8.12.2"
}
}