-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 880 Bytes
/
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
{
"name": "custom-error-test-helper",
"version": "1.0.6",
"description": "Library for testing Solidity custom errors with Truffle/Ganache.",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --pretty --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomiOhl/custom-error-test-helper.git"
},
"keywords": [
"solidity",
"error",
"test",
"truffle",
"ganache"
],
"author": "Tomi_Ohl",
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/solidity": "^5.7.0",
"chai": "^4.3.6"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}