forked from safe-global/safe-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@safe-global/safe-deployments",
"version": "1.27.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": "eslint --max-warnings 0 .",
"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": "^27.5.1",
"@types/node": "^14.14.21",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.1.3",
"jest": "^28.1.0",
"prettier": "^2.1.2",
"ts-jest": "^28.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"semver": "^7.3.7"
}
}