forked from decenterplace/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "@chainlink/test-helpers",
"private": false,
"version": "0.0.5",
"description": "A collection of test helpers to facilitate testing chainlink's smart contracts",
"main": "dist/src/index.js",
"repository": "https://github.com/smartcontractkit/chainlink",
"author": "Chainlink Devs",
"license": "MIT",
"scripts": {
"generate-typings": "typechain --target ethers-v4 --outDir src/generated src/LinkToken.json",
"test": "jest",
"clean": "tsc -b --clean && rimraf -rf src/generated",
"setup": "yarn generate-typings && tsc -b",
"prepublishOnly": "yarn setup --force && yarn test"
},
"dependencies": {
"@0x/sol-trace": "^3.0.29",
"@0x/subproviders": "^6.1.1",
"@typechain/ethers-v4": "^4.0.0",
"bn.js": "^5.1.3",
"cbor": "^5.0.2",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"debug": "^4.3.1",
"ethers": "^4.0.45",
"tslib": "^2.1.0",
"typechain": "^4.0.1"
},
"devDependencies": {
"@types/cbor": "^5.0.1",
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/ganache-core": "^2.7.0",
"@types/jest": "^26.0.8",
"@types/node": "^13.9.1",
"jest": "^26.6.3",
"jest-circus": "^25.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"files": [
"package.json",
"dist",
"README.md"
]
}