-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "@robinhoodcoop/contracts",
"version": "1.0.0",
"author": "Olivier Sarrouy <osarrouy@protonmail.com>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"homepage": "https://github.com/osarrouy/robinhoodcoop",
"scripts": {
"lint": "npx solium --dir ./contracts",
"compile": "npx truffle compile",
"test": "npm run test:script",
"test:gas": "GAS_REPORTER=true npm run test:script",
"test:coverage": "npx truffle run coverage",
"test:script": "scripts/ganache.sh",
"deploy:dev": "npx oz create RobinHoodCoop --network development --force --init",
"deploy:kovan": "npx oz create RobinHoodCoop --network kovan --force --init",
"deploy:mainnet": "npx oz create RobinHoodCoop --network mainnet --force --init",
"oz:tx": "npx oz send-tx",
"oz:call": "npx oz call"
},
"dependencies": {
"@openzeppelin/contracts": "^3.0.0-beta.0",
"@openzeppelin/upgrades": "^2.7.1"
},
"devDependencies": {
"@openzeppelin/cli": "^2.6.0",
"@openzeppelin/test-helpers": "^0.5.4",
"chai": "^4.2.0",
"eth-gas-reporter": "^0.2.15",
"ethlint": "^1.2.5",
"ganache-cli": "^6.9.1",
"solidity-coverage": "^0.7.2",
"truffle": "^5.1.16"
}
}