-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
54 lines (54 loc) · 1.69 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": "@keep-network/tbtc-v2-system-tests",
"version": "1.0.0-dev",
"license": "MIT",
"scripts": {
"clean": "hardhat clean && rm -rf cache/",
"format": "npm run lint",
"format:fix": "npm run lint:fix",
"lint": "npm run lint:eslint && npm run lint:config",
"lint:fix": "npm run lint:fix:eslint && npm run lint:config:fix",
"lint:eslint": "eslint .",
"lint:fix:eslint": "eslint . --fix",
"lint:config": "prettier --check '**/*.@(json|yaml)'",
"lint:config:fix": "prettier --write '**/*.@(json|yaml)'",
"test": "hardhat test"
},
"files": [
"test/**/*"
],
"dependencies": {
"@keep-network/tbtc-v2.ts": "^2.3.0",
"elliptic": "^6.5.4",
"wif": "^2.0.6"
},
"devDependencies": {
"@keep-network/hardhat-helpers": "^0.6.0-pre.7",
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@thesis-co/eslint-config": "github:thesis/eslint-config",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.30.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep",
"ethereum-waffle": "4.0.0-alpha.25",
"ethers": "^5.5.3",
"hardhat": "^2.18.2",
"hardhat-deploy": "^0.11.10",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 16"
}
}