-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
81 lines (81 loc) · 2.58 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
{
"name": "@ledgerhq/xpub-scan",
"version": "1.0.4",
"description": "Master public key analysis tool",
"main": "./lib/scan.js",
"bin": {
"xpub-scan": "./lib/scan.js"
},
"scripts": {
"clean": "npm cache clean --force && rm -rf lib/",
"build": "tsc && chmod +x ./lib/scan.js",
"test": "jest",
"sonarqube": "jest --collect-coverage --testResultsProcessor jest-sonar-reporter",
"lint": "eslint .",
"ts:check": "tsc --noEmit",
"prettier": "prettier --write .",
"ci": "npm run prettier && npm run ts:check && npm test",
"check:dep": "npm i && check-outdated --ignore-packages chalk,jest && npm audit --audit-level=low && npm shrinkwrap",
"regression": "npm run build && python3 .github/workflows/regression_tests/check.py",
"dev:test": "npm run clean && npm check:dep && npm run prettier && npm run ci && npm i && tsc -p .",
"dev:test:all": "npm run clean && npm run check:dep && npm run prettier && npm run ci && npm i && tsc -p . && npm run regression"
},
"repository": {
"type": "git",
"url": "git+https://github.com:LedgerHQ/xpub-scan.git"
},
"author": "Guillaume Lethuillier",
"license": "MIT",
"bugs": {
"url": "https://github.com/LedgerHQ/xpub-scan"
},
"homepage": "https://github.com/LedgerHQ/xpub-scan#readme",
"dependencies": {
"@types/bchaddrjs": "0.4.0",
"@types/bitcore-lib-cash": "8.23.5",
"@types/html-minifier": "4.0.2",
"@types/node": "20.2.5",
"@types/object-hash": "3.0.2",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"axios": "1.4.0",
"bchaddrjs": "0.5.2",
"bignumber.js": "9.1.1",
"bip32": "4.0.0",
"bitcoinjs-lib": "6.1.2",
"bitcore-lib-cash": "10.0.5",
"bs58check": "3.0.1",
"chalk": "4.1.2",
"check-outdated": "2.11.0",
"coininfo": "5.2.1",
"create-hmac": "1.1.7",
"date-fns": "2.30.0",
"dotenv": "16.1.4",
"eslint": "8.42.0",
"ethereumjs-wallet": "1.0.2",
"html-minifier": "4.0.0",
"jest": "29.3.1",
"object-hash": "3.0.0",
"prettier": "2.8.8",
"secp256k1": "5.0.0",
"tiny-secp256k1": "2.2.2",
"ts-node": "10.9.1",
"typescript": "5.1.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/preset-env": "7.22.4",
"@babel/preset-typescript": "7.21.5",
"@types/bs58check": "2.1.0",
"@types/create-hmac": "1.1.0",
"@types/jest": "29.5.2",
"jest-sonar-reporter": "2.0.0"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml",
"indent": 4
}
}