-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "@atomicfinance/bitcoin-node-wallet-provider",
"version": "3.5.3",
"description": "",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/lib/index.d.ts",
"directories": {
"dist": "dist",
"src": "lib"
},
"files": [
"dist",
"lib"
],
"scripts": {
"build": "../../node_modules/.bin/tsc --project tsconfig.json",
"lint": "../../node_modules/.bin/eslint --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
"lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
"test": "../../node_modules/.bin/nyc --reporter=lcov --reporter=text --extension=.ts ../../node_modules/.bin/mocha --recursive \"tests/**/*.test.*\""
},
"author": "Atomic Finance <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"@atomicfinance/bitcoin-utils": "^3.5.3",
"@atomicfinance/crypto": "^3.5.3",
"@atomicfinance/jsonrpc-provider": "^3.5.3",
"@atomicfinance/types": "^3.5.3",
"@atomicfinance/utils": "^3.5.3",
"@babel/runtime": "^7.12.1",
"bignumber.js": "^9.0.0",
"bitcoin-networks": "^1.0.0",
"bitcoinjs-lib": "5.2.0",
"lodash": "^4.17.20"
},
"homepage": "https://github.com/atomicfinance/chainabstractionlayer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/atomicfinance/chainabstractionlayer.git"
},
"bugs": {
"url": "https://github.com/atomicfinance/chainabstractionlayer/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/lodash": "^4.14.168"
},
"sideEffects": false
}