-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.34 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
{
"name": "atomex-erc20-solidity-evm",
"version": "1.0.0",
"description": "Atomex protocol implementation for ERC20 in Solidity language (EVM)",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"solium": "./node_modules/.bin/solium --no-soliumignore -d contracts",
"truffle": "./node_modules/.bin/truffle test",
"deploy_ropsten": "./node_modules/.bin/truffle migrate --network ropsten",
"deploy_mainnet": "./node_modules/.bin/truffle migrate --network mainnet",
"verify_ropsten": "./node_modules/.bin/truffle run verify Atomex --network ropsten",
"verify_mainnet": "./node_modules/.bin/truffle run verify Atomex --network mainnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomex-me/atomex-erc20-solidity.git"
},
"keywords": [
"smart-contracts",
"dex",
"ethereum",
"solidity",
"atomic-swap",
"erc20"
],
"author": "A1exCoon",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/atomex-me/atomex-erc20-solidity/issues"
},
"homepage": "https://github.com/atomex-me/atomex-erc20-solidity#readme",
"dependencies": {
"web3": "^1.3.5",
"dotenv": "^8.6.0",
"mocha": "^8.3.2",
"solium": "^1.2.5",
"truffle": "^5.3.4",
"truffle-plugin-verify": "^0.5.7",
"truffle-privatekey-provider": "^1.5.0"
}
}