-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "@crypto-com/swap-contracts-core",
"description": "🎛 Core contracts for the CroDefiSwap protocol",
"version": "0.0.1",
"homepage": "https://crypto.com/defi/swap",
"repository": {
"type": "git",
"url": "https://github.com/crypto-com/swap-contracts-core"
},
"keywords": [
"DeFiSwap",
"ethereum",
"core",
"crypto.com",
"DEcentralised FInance",
"DEFI",
"Automated Market Making",
"AMM",
"DEcentralised eXchange",
"DEX",
"Liquity Mining"
],
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./build/ && rimraf ./cache/",
"precompile": "yarn clean",
"compile": "waffle .waffle.json",
"pretest": "yarn compile",
"test": "mocha",
"prepublishOnly": "yarn test",
"truffle-compile": "./node_modules/.bin/truffle compile",
"truffle-migrate": "./node_modules/.bin/truffle migrate --reset;",
"truffle-migrate-ropsten": "./node_modules/.bin/truffle migrate --reset --network ropsten",
"truffle-migrate-mainnet": "./node_modules/.bin/truffle migrate --reset --network mainnet",
"replace-factory": "node ./scripts/replaceFactory.js"
},
"dependencies": {
"truffle": "5.1.42"
},
"devDependencies": {
"@truffle/hdwallet-provider": "1.0.43",
"@types/chai": "4.2.6",
"@types/mocha": "5.2.7",
"chai": "4.2.0",
"dotenv": "8.2.0",
"ethereum-waffle": "2.4.1",
"ethereumjs-util": "6.2.0",
"git-hooks": "1.1.10",
"mocha": "6.2.2",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"solc": "0.5.16",
"ts-node": "8.5.4",
"typescript": "3.7.3"
}
}