-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 986 Bytes
/
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
{
"name": "vainjs",
"version": "0.0.0",
"description": "A JavaScript vanity address generator",
"main": "src/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"bench": "node bench/index.js",
"test": "xo && c8 ava",
"coverage": "c8 report --all --reporter text --reporter html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/vainjs.git"
},
"keywords": [
"vanity",
"address",
"bitcoin",
"cryptocurrency"
],
"author": "Luke Childs <[email protected]> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/vainjs/issues"
},
"homepage": "https://github.com/lukechilds/vainjs#readme",
"devDependencies": {
"ava": "^1.4.1",
"c8": "^10.1.2",
"pretty-ms": "^5.0.0",
"xo": "^0.24.0"
},
"dependencies": {
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.0.3",
"tiny-emitter": "^2.1.0",
"yargs": "^14.2.0"
}
}