-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 1.85 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
82
{
"name": "wallet.ts",
"version": "1.0.1",
"description": "Utilities for cryptocurrency wallets, written in TypeScript",
"keywords": [
"crypto",
"cryptocurrency",
"bip32",
"bip39",
"bip44",
"hdkey",
"mnemonic",
"bitcoin",
"ethereum",
"litecoin",
"eip55",
"erc20",
"wallet",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/petejkim/wallet.ts",
"author": "Peter Jihoon Kim",
"license": "ISC",
"scripts": {
"test": "jest",
"fmt": "prettier --write 'src/**/*.ts' '*.json' '*.md'",
"dist": "rm -rf dist && tsc --build",
"tsc": "tsc --noEmit --pretty",
"lint": "yarn tsc && tslint -p . 'src/**/*.ts'",
"lint-watch": "nodemon -e ts,tsx,js,json --watch src/ --exec 'yarn tsc && yarn lint'"
},
"dependencies": {
"bn.js": "^5.1.3",
"bs58": "^4.0.1",
"elliptic": "^6.5.3",
"keccak": "^3.0.1"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"jest": "^26.4.0",
"jest-simple-dot-reporter": "^1.0.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">= 12.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"reporters": [
[
"jest-simple-dot-reporter",
{
"color": true
}
]
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}