-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "atomex-solidity-evm",
"version": "1.0.0",
"description": "Atomex protocol implementation 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-solidity.git"
},
"keywords": [
"smart-contracts",
"dex",
"ethereum",
"solidity",
"atomic-swap"
],
"author": "A1exCoon",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/atomex-me/atomex-solidity/issues"
},
"homepage": "https://github.com/atomex-me/atomex-solidity#readme",
"dependencies": {
"dotenv": "^8.6.0",
"mocha": "^8.3.2",
"solium": "^1.2.5",
"truffle": "^5.3.4",
"truffle-privatekey-provider": "^1.5.0",
"web3": "^1.3.5"
},
"devDependencies": {
"truffle-plugin-verify": "^0.5.7"
}
}