forked from bitcoinjs/bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "bip39",
"version": "3.0.4",
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rm -rf src",
"coverage": "nyc --branches 100 --functions 100 --check-coverage npm run unit",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"gitdiff:ci": "npm run build && git diff --exit-code",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prettier": "prettier 'ts_src/**/*.ts' --ignore-path ./.prettierignore",
"test": "npm run build && npm run format:ci && npm run lint && npm run unit",
"unit": "tape test/*.js",
"update": "node -e \"require('./util/wordlists').update()\""
},
"author": "Wei Lu",
"contributors": [
{
"name": "Daniel Cousens",
"email": "[email protected]",
"url": "http://dcousens.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bip39.git"
},
"license": "ISC",
"files": [
"src",
"types"
],
"dependencies": {
"@types/node": "11.11.6",
"create-hash": "^1.1.0",
"pbkdf2": "^3.0.9",
"randombytes": "^2.0.1"
},
"devDependencies": {
"@types/create-hash": "1.2.0",
"@types/pbkdf2": "3.0.0",
"@types/randombytes": "2.0.0",
"node-fetch": "^3.1.1",
"nyc": "^15.0.0",
"prettier": "1.16.4",
"proxyquire": "^1.7.10",
"tape": "^4.13.2",
"tslint": "^6.1.0",
"typescript": "3.3.4000"
}
}