This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
76 lines (76 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@keep-network/tbtc",
"version": "1.1.2-dev",
"description": "The tBTC smart contracts implementing the TBTC trustlessly Bitcoin-backed ERC-20 token.",
"repository": {
"type": "git",
"url": "ssh://[email protected]/keep-network/tbtc.git"
},
"files": [
"contracts/**/*.sol",
"artifacts/"
],
"scripts": {
"clean": "rm -rf build/",
"compile": "truffle compile",
"test": "truffle compile && mocha --exit --recursive test --timeout 20000",
"test:quick": "mocha --exit --recursive test --timeout 20000",
"test:quick:watch": "mocha --watch --recursive test --timeout 20000",
"test:debug": "NODE_ENV=test node --inspect node_modules/.bin/truffle test",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:js": "eslint .",
"lint:fix:js": "eslint --fix .",
"lint:sol": "solium -d contracts/ && prettier --list-different contracts/**/*.sol",
"lint:fix:sol": "solium -d contracts/ --fix && prettier --write contracts/**/*.sol"
},
"precommit": "npm run lint",
"author": "Satoshi Nakamoto 🤪",
"license": "MIT",
"bugs": {
"url": "https://github.com/keep-network/tbtc/issues"
},
"homepage": "https://tbtc.network/",
"dependencies": {
"@celo/contractkit": "^1.0.2",
"@keep-network/keep-ecdsa": ">1.9.0-dev <1.9.0-ropsten",
"@summa-tx/bitcoin-spv-sol": "^3.1.0",
"@summa-tx/relay-sol": "^2.0.2",
"openzeppelin-solidity": "2.3.0"
},
"devDependencies": {
"@asciidoctor/core": "2.2.0",
"@keep-network/common.js": "0.0.1-3",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.4",
"@truffle/hdwallet-provider": "^1.2.6",
"@types/mocha": "^7.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.26.0",
"bn-chai": "^1.0.1",
"bn.js": "^4.11.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",
"eslint-config-prettier": "^6.10.0",
"eth-gas-reporter": "^0.2.22",
"ethlint": "^1.2.4",
"ganache-cli": "^6.12.2",
"husky": "^6.0.0",
"mocha": "^7.0.1",
"moment": "^2.27.0",
"prettier": "^2.0.2",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solc": "0.5.17",
"solium": "^1.2.5",
"solium-config-keep": "git+https://github.com/keep-network/solium-config-keep.git#v0.2.0",
"truffle": "^5.3.1",
"truffle-plugin-verify": "^0.5.15"
},
"engines": {
"node": ">= 12.0.0"
}
}