-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.52 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": "@b0dhidharma/contract-tools",
"version": "0.1.2",
"description": "Several contract tools",
"keywords": [
"ethereum",
"smart",
"tools",
"contracts",
"solidity",
"hardhat"
],
"repository": {
"type": "git",
"url": "git+https://github.com/b0dhidharma/contract-tools.git"
},
"files": [
"contracts",
"build"
],
"scripts": {
"commit": "git-cz",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"fork": "FORK=true hardhat node",
"fork:script": "FORK=true hardhat run",
"fork:test": "FORK=true npm run test",
"postinstall": "husky install",
"lint:check": "solhint 'contracts/**/*.sol' 'interfaces/**/*.sol' && prettier --check './**'",
"lint:fix": "sort-package-json && prettier --write './**' && solhint --fix 'contracts/**/*.sol' 'interfaces/**/*.sol'",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"test": "TEST=true hardhat compile && TEST=true mocha",
"test:all": "npm run test test/**/**/*.spec.ts",
"test:all:gas": "TEST=1 REPORT_GAS=1 npx hardhat test",
"test:e2e": "npm run test ./test/e2e/**/*.spec.ts",
"test:unit": "npm run test 'test/unit/**/*.spec.ts'"
},
"dependencies": {
"@openzeppelin/contracts": "^4.0.0-beta.0"
},
"devDependencies": {
"@commitlint/cli": "12.0.0",
"@commitlint/config-conventional": "12.0.0",
"@gnosis.pm/testable-chi-token": "^1.0.0",
"@nomiclabs/hardhat-ethers": "2.0.1",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@types/chai": "4.2.15",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.2.1",
"@types/node": "14.14.31",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"axios": "0.21.1",
"chai": "4.3.0",
"chai-as-promised": "7.1.1",
"dotenv": "8.2.0",
"ethereum-waffle": "3.2.2",
"ethers": "5.0.31",
"hardhat": "2.0.11",
"hardhat-gas-reporter": "1.0.4",
"hardhat-preprocessor": "0.1.2",
"husky": "5.1.1",
"pinst": "2.1.6",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.5",
"solhint": "3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.15",
"sort-package-json": "1.49.0",
"standard-version": "9.1.1",
"ts-node": "9.1.1",
"typescript": "4.1.5"
},
"authors": [
{
"name": "b0dhidharma",
"email": "[email protected]",
"url": "https://github.com/b0dhidharma"
}
]
}