forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "@chainlink/contracts",
"version": "0.1.7",
"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",
"lint:sol": "solhint -f table ./src/**/**/*.sol",
"test:reset": "yarn setup && yarn test",
"test": "jest --testTimeout 80000 --forceExit --detectOpenHandles",
"test:ci:old": "./scripts/test_ci_old",
"prepublishOnly": "yarn clean && yarn setup"
},
"devDependencies": {
"@chainlink/belt": "0.0.5-alpha.1",
"@chainlink/test-helpers": "0.0.5",
"@types/jest": "^26.0.8",
"@types/node": "^13.9.1",
"ethers": "^4.0.45",
"jest": "^26.6.3",
"solhint": "^3.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"files": [
"abi/**/*",
"ethers/**/*",
"src/**/*",
"truffle/**/*",
"app.config.json"
],
"optionalDependencies": {
"@truffle/contract": "^4.3.8",
"ethers": "^4.0.45"
}
}