-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "generichd-wallet",
"version": "0.0.2",
"description": "Typescript - Generic HD Wallet, inspired by ethereumjs-wallet with sigutil replacement",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "scripts/build.sh",
"test": "ts-mocha --paths -p ./ test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptolandtech/generichd-wallet"
},
"keywords": [
"generichd-wallet",
"crypto",
"wallet"
],
"author": "Micky Socaci <micky@nowlive.ro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cryptolandtech/generichd-wallet/issues"
},
"homepage": "https://github.com/cryptolandtech/generichd-wallet#readme",
"dependencies": {
"ethereumjs-util": "^5.2.0",
"hdkey": "^1.0.0",
"safe-buffer": "^5.1.2",
"zilliqa.js": "github:Zilliqa/Zilliqa-JavaScript-Library"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.5",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"mocha-loader": "^1.1.3",
"mochawesome": "^2.3.1",
"safe-buffer": "^5.1.2",
"ts-mocha": "^1.3.0",
"typescript": "^2.8.3"
},
"engines": {
"node": ">=6.0.0"
},
"standard": {
"env": "mocha",
"globals": [
"describe",
"it"
]
}
}