-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "bip38",
"version": "3.1.1",
"description": "BIP38 is a standard process to encrypt Bitcoin and crypto currency private keys that is impervious to brute force attacks thus protecting the user.",
"main": "index.js",
"keywords": [
"bitcoin",
"crypto",
"cryptography",
"litecoin"
],
"homepage": "http://cryptocoinjs.com/modules/currency/bip38/",
"author": "JP Richardson",
"dependencies": {
"bigi": "^1.2.0",
"browserify-aes": "^1.0.1",
"bs58check": "<3.0.0",
"buffer-xor": "^1.0.2",
"create-hash": "^1.1.1",
"ecurve": "^1.0.0",
"safe-buffer": "~5.1.1",
"scryptsy": "^2.1.0"
},
"devDependencies": {
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"mochify": "^6.2.0",
"nyc": "^14.1.1",
"standard": "^12.0.1",
"wif": "^2.0.1"
},
"repository": {
"url": "[email protected]:bitcoinjs/bip38.git",
"type": "git"
},
"scripts": {
"browser-test": "mochify --wd -R spec --timeout 100000",
"ci:test": "npm run standard && npm run coveralls",
"coverage": "nyc --check-coverage --reporter=lcov --reporter=text mocha",
"coveralls": "npm run-script coverage && coveralls < coverage/lcov.info",
"standard": "standard",
"test": "npm run standard && npm run unit",
"unit": "mocha --ui bdd --timeout 240000"
}
}