-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 1.41 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
{
"name": "@summa-tx/memview-sol",
"version": "2.1.2",
"description": "Raw memory access in solidity",
"repository": {
"type": "git",
"url": "[email protected]:summa-tx/memview.sol.git"
},
"scripts": {
"5:compile": "npx hardhat compile --config hardhat.config.5.ts",
"6:compile": "npx hardhat compile --config hardhat.config.6.ts",
"7:compile": "npx hardhat compile --config hardhat.config.7.ts",
"compile": "npm run 5:compile && npm run 6:compile && npm run 7:compile",
"5:test": "npx hardhat test --config hardhat.config.5.ts",
"6:test": "npx hardhat test --config hardhat.config.6.ts",
"7:test": "npx hardhat test --config hardhat.config.7.ts",
"test": "npm run 5:test && npm run 6:test && npm run 7:test",
"test:coverage": "npx hardhat coverage --config hardhat.config.5.ts",
"lint": "solium -d contracts/ && eslint ./test",
"lint:fix": "solium --fix -d contracts/ && eslint --fix ./test"
},
"author": "James Prestwich <[email protected]>",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"chai": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"ethers": "^5.0.17",
"hardhat": "^2.9.1",
"solidity-coverage": "^0.7.11",
"solidity-docgen": "^0.5.7",
"solium": "^1.2.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}