This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 3.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "protocol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"build": "hardhat compile",
"compile:clean": "hardhat clean && hardhat compile",
"build:clean": "npm run compile:clean",
"deploy": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy:ropsten": "npx hardhat run scripts/deploy.js --network ropsten 2>&1 | tee ./.ignored/ropsten-deployment.md",
"deploy:kovan": "npx hardhat run scripts/deploy.js --network kovan 2>&1 | tee ./.ignored/kovan-deployment.md",
"verify": "npx hardhat run scripts/verify.js --network kovan",
"solhint": "solhint \"contracts/**/*.sol\"",
"genabi": "rm -rf ./abis && mkdir abis && node ./util/extract/abis",
"replace:abis": "npm run genabi && cp ./abis/*.json ../web3/@neptunemutual/sdk/src/config/abis",
"genkey": "node ./util/extract/keys/index.js > ./util/key.js && standard --fix ./util/key.js",
"genkey:ts": "touch ./.ignored/key-util.ts && node ./util/extract/keys --ts > ./.ignored/key-util.ts",
"genkey:as": "touch ./.ignored/key-util.ts && node ./util/extract/keys --as > ./.ignored/key-util.ts",
"replace:keys": "touch ./.ignored/key-util.ts && node ./util/extract/keys --ts > ../web3/@neptunemutual/sdk/src/utils/key-util.ts",
"gendoc": "npm run gendoc:local",
"gendoc:local": "rm -rf build && rm -rf docs && truffle compile && node ../solidoc2/cli.js",
"gendoc:global": "rm -rf build && rm -rf docs && truffle compile && solidoc2",
"slither": "slither .",
"slither:x": "slither . --print human-summary,vars-and-auth",
"slither:save": "slither . > ./.todo/slither.log 2>&1",
"slither:x:save": "slither . --print human-summary,vars-and-auth > ./.todo/slither.x.log 2>&1",
"test": "npx hardhat test",
"test:all": "npx hardhat test ./**/*.{spec,story}.js",
"coverage": "npx hardhat coverage",
"stories": "npx hardhat test ./**/*.story.js",
"story": "npm run stories",
"walk": "node ./util/analyzers/chain-state | sed -r \"s/\\x1B\\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g\" > ./.todo/_Walker.sol && echo View file 👉 ./.todo/_Walker.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neptune-mutual/protocol.git"
},
"standard": {
"env": [
"mocha"
],
"global": [
"ethers",
"task",
"contract",
"artifacts",
"web3"
]
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neptune-mutual/protocol/issues"
},
"homepage": "https://github.com/neptune-mutual/protocol#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"bignumber.js": "^9.0.2",
"bs58": "^4.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.6",
"ipfs-mini": "^1.1.5",
"moment": "^2.29.1",
"node-enumerable": "^6.0.0",
"openzeppelin-solidity": "^4.4.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"solidoc2": "^1.0.7",
"standard": "^16.0.4"
}
}