This repository has been archived by the owner on Oct 10, 2020. It is now read-only.
forked from DMDcoin/diamond-contracts-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "posdao-contracts",
"version": "0.1.4",
"description": "Smart contracts for DPoS",
"main": "index.js",
"scripts": {
"compile": "node_modules/.bin/truffle compile",
"coverage": "SOLIDITY_COVERAGE=true bash scripts/test.sh",
"docs-publish": "npm run solidity-docgen && cd docs/website && npm i && npm run publish-gh-pages",
"docs-start": "npm run solidity-docgen && cd docs/website && npm i && npm start",
"flat": "bash scripts/make_flat.sh",
"solhint": "node_modules/.bin/solhint \"contracts/**/*.sol\"",
"solidity-docgen": "rm -rf docs/docs/api* && npm i && solidity-docgen --exclude interfaces,libs,ERC677BridgeTokenRewardable.sol,Migrations.sol . contracts docs && node docs/website/sidebars-fix.js",
"test": "node scripts/check_for_clashing.js && bash scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poanetwork/posdao-contracts.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/poanetwork/posdao-contracts/issues"
},
"homepage": "https://github.com/poanetwork/posdao-contracts#readme",
"dependencies": {
"lodash": "^4.17.15",
"solidity-docgen": "^0.4.1",
"solidity-flattener": "github:poanetwork/solidity-flattener#master"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"eth-gas-reporter": "^0.2.12",
"ganache-cli": "^6.6.0",
"mochawesome": "^3.1.1",
"node-fetch": "^2.6.0",
"solc": "^0.5.16",
"solhint": "^2.0.0",
"solidity-coverage": "^0.7.2",
"truffle": "^5.0.43",
"web3": "^1.2.1"
}
}