forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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/contracts",
"version": "0.2.2",
"description": "Chainlink smart contracts",
"author": "Chainlink devs",
"license": "MIT",
"private": false,
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('Please use yarn to install dependencies\\n\\n')\"",
"test": "hardhat test",
"size": "hardhat size-contracts",
"clean": "hardhat clean",
"compile:native": "./scripts/native_solc_compile_all",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"setup": "yarn compile",
"prepublishOnly": "yarn compile && ./scripts/prepublish_generate_abi_folder",
"publish-beta": "yarn publish --tag beta",
"publish-prod": "yarn tag add @chainlink/[email protected] latest"
},
"files": [
"src/",
"abi/"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.11",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/cbor": "5.0.1",
"@types/chai": "^4.2.18",
"@types/debug": "^4.1.7",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"debug": "^4.3.2",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.3.2"
}
}