-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "@research-ag/ckbtc-address-js",
"version": "0.0.3",
"description": "An algorithm which calculates BTC address for deposits to ckBTC minter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepack": "rm -rf ./dist/ && npm run build",
"build": "tsc"
},
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/research-ag/ckbtc-address-js.git"
},
"bugs": {
"url": "https://github.com/research-ag/ckbtc-address-js/issues"
},
"homepage": "https://github.com/research-ag/ckbtc-address-js#readme",
"dependencies": {
"@dfinity/principal": "^2.3.0",
"bech32": "^2.0.0",
"bn.js": "^5.2.1",
"elliptic": "^6.6.1",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "~5.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": "\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts",
"!**/*.module.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/test/"
],
"coverageDirectory": "./coverage",
"testEnvironment": "jsdom"
}
}