forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "@chainlink/contracts",
"version": "0.0.9",
"description": "Smart contracts and their language abstractions for chainlink",
"repository": "https://github.com/smartcontractkit/chainlink",
"author": "Chainlink devs",
"license": "MIT",
"private": false,
"scripts": {
"compile": "belt compile all",
"compile:clean": "yarn clean && yarn compile",
"setup": "yarn compile:clean && tsc -b tsconfig.test.json tsconfig.ethers.json",
"clean": "tsc -b --clean tsconfig.test.json tsconfig.ethers.json && rm -rf abi ethers truffle",
"pretest": "tsc -b --clean tsconfig.ethers.json",
"test": "jest --testTimeout 80000 --forceExit",
"test:ci": "./scripts/test_ci",
"prepublishOnly": "yarn clean && yarn setup && yarn test:ci && yarn setup"
},
"devDependencies": {
"@chainlink/belt": "0.0.1",
"@chainlink/test-helpers": "0.0.5",
"@types/jest": "^26.0.8",
"@types/node": "^13.9.1",
"ethers": "^4.0.45",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"files": [
"abi/**/*",
"ethers/**/*",
"src/**/*",
"truffle/**/*",
"app.config.json"
],
"optionalDependencies": {
"@truffle/contract": "^4.2.6",
"ethers": "^4.0.45"
}
}