-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "one-way-erc20-swap",
"version": "1.2.0",
"description": "Simple contract allowed 1:1 swap of one ERC20 token to another",
"author": "Curio Capital AG",
"license": "MIT",
"directories": {
"test": "test"
},
"engines": {
"node": "^14.15.0"
},
"repository": "https://github.com/CurioTeam/one-way-erc20-swap",
"scripts": {
"compile": "npx truffle compile",
"compile:all": "npx truffle compile --all",
"deploy": "npx truffle migrate --network local",
"test": "npx truffle compile --all && mocha --exit --recursive test --timeout 10000",
"test:truffle": "npx truffle test --network test",
"clean": "rm -rf ./build"
},
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/upgrades": "^2.8.0"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.8",
"@openzeppelin/test-helpers": "^0.5.9",
"@openzeppelin/truffle-upgrades": "^1.3.0",
"@truffle/hdwallet-provider": "^1.2.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"mocha": "^8.2.1",
"path": "^0.12.7",
"truffle": "^5.1.56",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.4",
"web3": "^1.3.0"
}
}