-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "atomex-core-ethereum",
"version": "1.0.0",
"description": "Atomex protocol implementation for Ethereum",
"main": "truffle.js",
"scripts": {
"lint": "./node_modules/.bin/solium --no-soliumignore -d contracts",
"test": "./node_modules/.bin/truffle test",
"build": "./node_modules/.bin/truffle compile",
"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-protocol/atomex-core.git"
},
"keywords": [
"smart-contracts",
"dex",
"ethereum",
"solidity",
"atomic-swap"
],
"author": "A1exCoon",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomex-protocol/atomex-core/issues"
},
"homepage": "https://bridge.atomex.me",
"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": {
"@openzeppelin/contracts": "^4.3.2",
"truffle-plugin-verify": "^0.5.7"
}
}