forked from safe-global/safe-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "@safe-global/safe-deployments",
"version": "1.34.0",
"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",
"test",
"build"
],
"scripts": {
"build": "yarn rimraf dist && tsc",
"lint": "yarn lint:ts && yarn lint:json",
"lint:ts": "eslint --max-warnings 0 .",
"lint:json": "prettier -c src/assets/*/*.json",
"prepack": "yarn build",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-deployments.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "richard@safe.global",
"bugs": {
"url": "https://github.com/safe-global/safe-deployments/issues"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"semver": "^7.6.0"
}
}