-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.86 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": "@bitcoinerlab/explorer",
"description": "Bitcoin Blockchain Explorer: Client Interface featuring Esplora and Electrum Implementations.",
"homepage": "https://github.com/bitcoinerlab/explorer",
"version": "0.4.0",
"author": "Jose-Luis Landabaso",
"license": "MIT",
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./node_modules/@bitcoinerlab/configs/eslintConfig"
},
"jest": {
"preset": "@bitcoinerlab/configs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"webdocs": "typedoc --options ./node_modules/@bitcoinerlab/configs/webtypedoc.json",
"docs": "typedoc --options ./node_modules/@bitcoinerlab/configs/typedoc.json",
"build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json",
"build:test": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json",
"build": "npm run build:src && npm run build:test",
"lint": "eslint --ignore-path .gitignore --ext .ts src/ test/",
"ensureTester": "./node_modules/@bitcoinerlab/configs/scripts/ensureTester.sh",
"test": "npm run lint && npm run build && npm run ensureTester && NODE_OPTIONS=\"--experimental-fetch\" jest",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinerlab/explorer.git"
},
"keywords": [
"bitcoin",
"explorer",
"esplora",
"electrum"
],
"bugs": {
"url": "https://github.com/bitcoinerlab/explorer/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@bitcoinerlab/configs": "github:bitcoinerlab/configs",
"@bitcoinerlab/descriptors": "^2.1.0",
"@bitcoinerlab/secp256k1": "^1.1.1",
"bip39": "^3.1.0",
"regtest-client": "^0.2.1"
},
"dependencies": {
"@bitcoinerlab/electrum-client": "^1.0.4",
"bitcoinjs-lib": "^6.1.3"
}
}