-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 2.3 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
{
"name": "bellhdw",
"version": "0.5.43",
"description": "Client-side Bitcoin JavaScript library",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"audit": "better-npm-audit audit -l high",
"build": "npm run clean && tsc -p ./tsconfig.json && npm run formatjs",
"build:tests": "npm run clean:jstests && tsc -p ./tests/tsconfig.json",
"clean": "rimraf src",
"clean:jstests": "rimraf 'tests/**/!(ts-node-register)*.js'",
"coverage-report": "npm run build && npm run nobuild:coverage-report",
"coverage-html": "npm run build && npm run nobuild:coverage-html",
"coverage": "npm run build && npm run nobuild:coverage",
"format": "npm run prettier -- --write",
"formatjs": "npm run prettierjs -- --write",
"format:ci": "npm run prettier -- --check && npm run prettierjs -- --check",
"gitdiff:ci": "npm run build && git diff --exit-code",
"integration": "npm run build && npm run nobuild:integration",
"lint": "eslint ts_src/** src/**/*.js",
"lint:tests": "eslint tests/**/*.spec.ts",
"mocha:ts": "mocha --recursive --require tests/ts-node-register",
"nobuild:coverage-report": "nyc report --reporter=lcov",
"nobuild:coverage-html": "nyc report --reporter=html",
"nobuild:coverage": "npm run build:tests && nyc --check-coverage --branches 85 --functions 90 --lines 90 mocha && npm run clean:jstests",
"nobuild:integration": "npm run mocha:ts -- --timeout 50000 'tests/integration/*.ts'",
"test": "npm run mocha:ts -- 'tests/*.ts'",
"prettier": "prettier \"ts_src/**/*.ts\" \"tests/**/*.ts\" --ignore-path ./.prettierignore",
"prettierjs": "prettier \"src/**/*.js\" --ignore-path ./.prettierignore"
},
"repository": {
"type": "git"
},
"files": [
"src"
],
"dependencies": {
"@noble/hashes": "1.3.3",
"belcoinjs-lib": "0.1.3",
"bells-secp256k1": "0.1.1",
"belpair": "0.1.4",
"nintondo-bip39": "1.0.0",
"bn.js": "5.2.1",
"browser-hdkey": "0.1.9"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.0",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"better-npm-audit": "^3.7.3",
"prettier": "^2.8.0",
"rimraf": "^2.6.3",
"typescript": "^4.4.4"
},
"license": "MIT"
}