-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "@rmeissner/safe-simulator",
"private": false,
"version": "0.5.3",
"description": "Library to simulate and analyze Safe transaction",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc",
"example": "ts-node examples/simulation.ts",
"prepublish": "yarn build"
},
"husky": {
"hooks": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmeissner/safe-simulator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"devDependencies": {
"@gnosis.pm/safe-deployments": "^1.8.0",
"@types/node": "^17.0.15",
"@types/util.promisify": "^1.0.4",
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"ethers": "^5.5.4",
"ganache": "^7.0.2",
"ganache-core": "^2.13.2",
"husky": "^7.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"@gnosis.pm/safe-deployments": "^1.8.0",
"axios": "^0.25.0",
"ethers": "^5.5.2"
},
"author": "rmeissner",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/rmeissner/safe-simulator/issues"
},
"homepage": "https://github.com/rmeissner/safe-simulator#readme"
}