-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "hdkey-secp256r1",
"version": "1.1.0",
"description": "BIP32 hierarchical deterministic keys using secp256r1 curve",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/backslash47/hdkey-secp256r1"
},
"license": "MIT",
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto",
"secp256r1"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "/test/.*\\.test\\.(ts|tsx|js)$"
},
"bugs": {
"url": "https://github.com/backslash47/hdkey-secp256r1/issues"
},
"homepage": "https://github.com/backslash47/hdkey-secp256r1",
"devDependencies": {
"@types/node": "^10.0.0",
"@types/elliptic": "^6.4.0",
"@types/jest": "^23.3.1",
"@types/bigi": "^1.4.2",
"@types/ecurve": "^1.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"bigi": "^1.4.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"ecurve": "^1.0.6",
"jest": "^23.4.2",
"jest-cli": "^23.6.0",
"ts-jest": "^23.1.4",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-no-circular-imports": "^0.4.0",
"typescript": "^3.0.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"bn.js": "^4.11.8",
"bs58check": "^2.1.2",
"elliptic": "^6.4.1"
},
"scripts": {
"test": "jest",
"lint": "tslint --project ./",
"build:dev": "cross-env NODE_ENV=development webpack --mode development --display-error-details --progress --color",
"build:prod": "cross-env NODE_ENV=production webpack --mode production --progress --color"
}
}