forked from smartcontractkit/LinkToken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "link_token",
"homepage": "https://github.com/smartcontractkit/LinkToken",
"repository": "https://github.com/smartcontractkit/LinkToken",
"version": "1.1.0",
"license": "MIT",
"authors": [
"Steve Ellis <[email protected]>",
"Kristijan Rebernisak <[email protected]>"
],
"devDependencies": {
"@chainlink/belt": "^0.0.3",
"@truffle/hdwallet-provider": "^1.0.43",
"bignumber.js": "^2.0.0",
"eth-gas-reporter": "^0.2.17",
"ganache-cli": "^6.4.1",
"moment": "^2.15.2",
"solc": "^0.6.0",
"truffle": "^5.1.32",
"web3": "^1.3.0"
},
"files": [
"README.md",
"contracts"
],
"scripts": {
"compile": "belt compile all",
"clean": "rm -r build/contracts build/ethers build/truffle",
"compile:clean": "yarn clean & yarn compile",
"test": "env NODE_ENV=test truffle test",
"test:v0.4": "env NODE_ENV=test find ./test/v0.4 -type f | xargs truffle test",
"test:v0.6": "env NODE_ENV=test find ./test/v0.6 -type f | xargs truffle test",
"migrate:v0.4": "env VERSION=v0.4 truffle migrate",
"migrate:v0.6": "env VERSION=v0.6 truffle migrate"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"@truffle/contract": "^4.1.8",
"ethers": "^4.0.44"
}
}