forked from smartcontractkit/LinkToken
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 KB
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": "@chainlink/token",
"homepage": "https://github.com/smartcontractkit/LinkToken",
"repository": "https://github.com/smartcontractkit/LinkToken",
"version": "1.2.0-alpha",
"license": "MIT",
"authors": [
"Steve Ellis <steve@smartcontract.com>"
],
"files": [
"build/**/*.js",
"build/contracts/*",
"build/artifacts/**/*.json",
"build/types/**/*.ts",
"contracts/*"
],
"scripts": {
"clean": "tsc -b --clean tsconfig.json && rm -rf build/",
"setup": "yarn build:contracts",
"build:contracts": "yarn build:contracts:v0.4 && yarn build:contracts:v0.6",
"build:contracts:v0.4": "VERSION=v0.4 hardhat compile --show-stack-traces",
"build:contracts:v0.6": "VERSION=v0.6 hardhat compile --show-stack-traces",
"test": "hardhat test --show-stack-traces"
},
"dependencies": {
"@chainlink/contracts": "^0.1.6",
"@openzeppelin/contracts": "^3.4.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-gas-reporter": "^1.0.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/semver": "^7.3.4",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"glob": "^7.1.6",
"hardhat": "^2.1.2",
"moment": "^2.15.2",
"prettier": "^2.2.1",
"semver": "^7.3.5",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
}
}