-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 KB
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
{
"name": "olympus-protocol",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"build": "truffle compile",
"test": "./node_modules/.bin/run-with-testrpc --port 8545 'truffle test' ",
"testCoverage": "./node_modules/.bin/run-with-testrpc --port 8545 'truffle test --network coverage' ",
"deploy": "./node_modules/.bin/run-with-testrpc --port 8545 'truffle migrate --reset --network development' ",
"deploytestnet": "./node_modules/.bin/run-with-testrpc --port 8545 'truffle migrate --reset --network kovan' ",
"linting": "#solhint 'contracts/**/*.sol'",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:Olympus-Labs/protocol-architecture.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"ganache-cli": "^6.1.0",
"run-with-testrpc": "^0.3.0",
"solhint": "^1.1.10",
"solidity-coverage": "^0.5.0",
"truffle": "^4.1.7"
},
"dependencies": {
"bluebird": "^3.5.1",
"eth-gas-reporter": "^0.1.1",
"lodash": "^4.17.5",
"mocha": "^5.0.5",
"prompt-sync": "^4.1.6",
"solc": "^0.4.23",
"truffle-hdwallet-provider": "0.0.3",
"zeppelin-solidity": "^1.8.0"
}
}