forked from keep-network/tbtc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.11 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
56
57
58
59
{
"name": "@keep-network/tbtc.js",
"version": "0.19.4-pre",
"type": "module",
"description": "tbtc.js provides JS bindings to the tBTC system that establishes a TBTC ERC20 token supply-pegged to BTC.",
"repository": {
"type": "git",
"url": "ssh://[email protected]/keep-network/tbtc.js"
},
"bugs": {
"url": "https://github.com/keep-network/tbtc.js/issues"
},
"homepage": "https://github.com/keep-network/tbtc.js",
"main": "index.js",
"bin": "./bin/tbtc.js",
"files": [
"bin/",
"src/",
"index.js"
],
"scripts": {
"test": "mocha --timeout 10000",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:fix:js",
"lint:js": "npm run lint:js:eslint && npm run lint:js:types",
"lint:fix:js": "eslint --fix .",
"lint:js:eslint": "eslint .",
"lint:js:types": "!(npx tsc --allowJs --noEmit $(cat jsconfig.json | jq -r '.compilerOptions | to_entries | map([\"--\\(.key)\",.value]) | flatten | join(\" \")') src/**.js bin/**.js examples/**.js | grep \"^\\(src\\|bin\\|test\\|examples\\)/\") # comment any other passed arguments"
},
"author": "Antonio Salazar Cardozo <[email protected]>",
"license": "MIT",
"dependencies": {
"@keep-network/keep-ecdsa": ">1.7.0-pre <1.7.0-rc",
"@keep-network/tbtc": ">1.1.2-pre <1.1.2-rc",
"bcoin": "git+https://github.com/keep-network/bcoin.git#355c21aec91128362668162fe5a309dbc0c59c75",
"bcrypto": "git+https://github.com/bcoin-org/bcrypto.git#semver:~5.3.0",
"bufio": "^1.0.6",
"electrum-client-js": "git+https://github.com/keep-network/electrum-client-js.git#v0.1.0",
"p-wait-for": "^3.1.0",
"web3-utils": "^1.2.8"
},
"peerDependencies": {
"web3": "^1.2.11",
"web3-eth-contract": "^1.2.11",
"web3-provider-engine": "^15.0.7"
},
"devDependencies": {
"@0x/subproviders": "^6.0.8",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-keep": "git+https://github.com/keep-network/eslint-config-keep.git#0.3.0",
"fs": "0.0.1-security",
"mocha": "^6.2.0",
"prettier": "^1.19.1",
"typescript": "3.4.3",
"web3": "^1.2.11",
"web3-provider-engine": "^15.0.7"
}
}