forked from gnosis/dex-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@gnosis.pm/dex-contracts",
"version": "0.1.3",
"description": "Contracts for dFusion multi-token batch auction exchange",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"test-stablex": "truffle test test/stablex/*",
"test-snapp": "truffle test test/snapp/*",
"coverage": "solidity-coverage",
"networks-extract": "CONF_FILE=$(pwd)'/migration_conf.js' node node_modules/@gnosis.pm/util-contracts/src/extract_network_info.js",
"networks-inject": "CONF_FILE=$(pwd)'/migration_conf.js' node node_modules/@gnosis.pm/util-contracts/src/inject_network_info.js",
"networks-reset": "mkdir -p build/contracts && truffle networks --clean && yarn run networks-inject",
"verify-stablex": "truffle run verify BatchExchange",
"lint": "eslint .",
"solhint": "solhint \"contracts/**/*.sol\"",
"prepack": "truffle build && yarn run networks-reset",
"prettier:solidity": "prettier --write 'contracts/**/*.sol'",
"prettier:js": "prettier --write './**/*.js'",
"pretty-check": "prettier --check 'contracts/**/*.sol' && prettier --check './**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/dex-contracts.git"
},
"files": [
"build/contracts/BatchExchange.json",
"build/contracts/EpochTokenLocker.json",
"build/contracts/Migrations.json",
"build/contracts/SnappAuction.json",
"build/contracts/SnappBase.json",
"build/contracts/SnappBaseCore.json",
"build/contracts/TokenConservation.json",
"build/contracts/IERC20.json",
"networks.json",
"src"
],
"keywords": [
"decentralized",
"exchange",
"dFusion",
"gnosis",
"dex",
"batch",
"auction",
"multi-token"
],
"author": "GNOSIS",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/gnosis/dex-contracts/issues"
},
"homepage": "https://github.com/gnosis/dex-contracts#readme",
"dependencies": {
"bn.js": "^5.1.1"
},
"devDependencies": {
"@gnosis.pm/mock-contract": "^3.0.8",
"@gnosis.pm/owl-token": "^3.1.0",
"@gnosis.pm/solidity-data-structures": "^1.2.1",
"@gnosis.pm/util-contracts": "^2.0.6",
"axios": "^0.19.0",
"coveralls": "^3.0.9",
"dotenv": "^8.0.0",
"es6-promise": "^4.2.8",
"eslint": "^6.8.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-react": "^7.17.0",
"eth-gas-reporter": "^0.2.14",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0",
"fast-memoize": "^2.5.1",
"husky": "^3.1.0",
"merkletreejs": "0.1.7",
"minimist": "^1.2.0",
"node-fetch": "^2.6.0",
"openzeppelin-solidity": "OpenZeppelin/openzeppelin-contracts#2c11ed59",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.35",
"solhint": "^2.3.0",
"solhint-plugin-prettier": "0.0.3",
"solidity-bytes-utils": "0.0.8",
"solidity-coverage": "^0.6.7",
"solidity-multicall": "^1.0.0",
"solium": "^1.2.4",
"truffle": "^5.1.6",
"truffle-assertions": "^0.9.2",
"truffle-contract": "^4.0.31",
"truffle-flattener": "^1.4.2",
"truffle-plugin-verify": "^0.3.6",
"yargs": "^15.1.0"
}
}