-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "alium-liquidity-migration",
"version": "1.0.1",
"description": "Alium lp tokens migration contracts",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/contracts": "^3.0.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"ethers": "^5.4.1",
"truffle-flattener": "^1.5.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.5",
"@openzeppelin/test-helpers": "^0.5.6",
"chai": "^4.3.0",
"chai-bignumber": "^2.0.2",
"eslint": "^7.30.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.15",
"solhint": "^3.3.6",
"truffle": "^5.4.0"
},
"scripts": {
"build": "truffle compile",
"test": "truffle test",
"lint": "solhint 'contracts/**/*.sol' --ignore-path .solhintignore",
"prettier": "npx prettier --write 'contracts/**/*.sol'",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"dist": "truffle-flattener ./contracts/AliumVamp.sol > ./flat/AliumVamp.Full.sol"
},
"repository": {
"type": "git",
"url": "https://www.github.com/Aliumswap/alium-liquidity-migration.git"
},
"keywords": [
"Alium",
"token",
"BRC-20",
"Ethereum",
"Binance smart chain",
"ICO",
"smartcontract",
"solidity"
],
"author": "Eugene Rupakov <[email protected]>",
"license": "MIT"
}