-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "@safe-global/safe-deployments",
"version": "1.37.15",
"description": "Collection of Safe singleton deployments",
"homepage": "https://github.com/safe-global/safe-deployments/",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "npm run lint:ts && npm run lint:json",
"lint:ts": "eslint --max-warnings 0 src/ scripts/",
"lint:json": "prettier -c src/assets/*/*.json",
"lint:fix": "npm run lint:fix:ts && npm run lint:fix:json",
"lint:fix:ts": "npm run lint:ts -- --fix",
"lint:fix:json": "prettier -w src/assets/*/*.json",
"review:verify-deployment": "ts-node scripts/review/verifyDeployment.ts",
"review:diff": "ts-node scripts/review/diff.ts",
"prepack": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-deployments.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/safe-global/safe-deployments/issues"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.13.1",
"jest": "^29.7.0",
"parse-diff": "^0.11.1",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"dependencies": {
"semver": "^7.6.2"
}
}