forked from razor-network/oracle-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.06 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@razor-network/contracts",
"version": "0.2.1",
"description": "These are the contracts for Razor network testnet",
"author": "Razor Network",
"private": false,
"files": [
"abi/**/*",
"contracts/**/*"
],
"scripts": {
"cp-ci-env": "cp .env.ci .env",
"compile": "npx hardhat compile",
"codechecks": "npx codechecks",
"coverage": "hardhat coverage && npm run coverage:check",
"coverage:check": "istanbul check-coverage --statements 90 --branches 60 --functions 85 --lines 86",
"start:local": "./node_modules/.bin/hardhat node",
"deploy": "./scripts/deploy.sh",
"lint": "npm run lint:sol && npm run lint:js",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "eslint \"**/*.js\"",
"lint:js:fix": "eslint --fix . \"**/*.js\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "prettier 'contracts/**/*.sol' -w",
"test": "hardhat test",
"scenarios": "hardhat test scenarios/scenarios.js",
"gas": "CI=true npm run test && node scripts/gasAnalyze.js",
"gasCompare": "node scripts/gasCompare.js",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"release": {
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/razor-network/contracts.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/razor-network/contracts/issues"
},
"homepage": "https://github.com/razor-network/contracts#readme",
"dependencies": {
"@openzeppelin/contracts": "4.5.0",
"@primitivefi/hardhat-dodoc": "^0.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"circleci-pr-commenter": "^0.1.2",
"fs": "^0.0.1-security",
"hardhat-abi-exporter": "^2.3.0",
"json-to-markdown-table": "^1.0.0",
"jsonfile": "^6.1.0",
"semantic-release": "^19.0.2"
},
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"axios": "^0.24.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"dotenv": "10.0.0",
"elliptic": "^6.5.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"ethers": "^5.4.6",
"get-json": "^1.0.1",
"hardhat": "2.6.4",
"hardhat-gas-reporter": "1.0.4",
"husky": "^7.0.4",
"pinst": "^3.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "~3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17"
},
"engines": {
"node": ">=16"
}
}