-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
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
{
"name": "@getsafle/vault-bitcoin-controller",
"version": "2.0.7",
"description": "",
"engines": {
"node": ">= 10"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js",
"test": "mocha \"test/**.js\" --timeout 15000",
"test:coverage": "npm run cover:unit && npm run cover:report",
"test:coveragehtml": "npm run cover:unit && npm run cover:reporthtml",
"cover:unit": "nyc --silent npm run test",
"cover:report": "nyc report --reporter=lcov --reporter=text --report-dir='./jscoverage'",
"cover:reporthtml": "nyc report --reporter=html --report-dir='./jscoverage'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsafle/vault-bitcoin-controller.git"
},
"keywords": [
"bitcoin",
"keyring"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/getsafle/vault-bitcoin-controller/issues"
},
"homepage": "https://github.com/getsafle/vault-bitcoin-controller#readme",
"dependencies": {
"axios": "^0.21.4",
"bip39": "^2.2.0",
"bitcoinjs-lib": "^5.2.0",
"bitcoinjs-message": "^2.2.0",
"bitcore-lib": "^8.25.10",
"obs-store": "^4.0.3",
"satoshi-bitcoin": "^1.0.5"
},
"devDependencies": {
"@metamask/eslint-config": "^4.0.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.1.3",
"nyc": "^15.0.0"
}
}