-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
60
61
62
63
64
65
66
67
{
"name": "@safe-global/safe-locking",
"version": "1.0.0",
"description": "Safe Token Locking Contract",
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"build:ts": "npx rimraf dist && tsc",
"test": "hardhat test",
"test:e2e": "HARDHAT_FORK=1 hardhat test",
"test:all": "npm run test && npm run test:e2e",
"coverage": "hardhat coverage",
"coverage:check": "istanbul check-coverage ./coverage.json --statements 100 --branches 100 --functions 100 --lines 100",
"deploy-all": "hardhat deploy-contracts --network",
"deploy": "hardhat deploy --network",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint ./src && eslint ./test",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepack": "npm run build",
"prepare": "husky install",
"prepublish": "npx rimraf build && npm run build && npm run build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-locking.git"
},
"keywords": [
"ethereum",
"safe",
"safe token",
"wallet"
],
"author": "@safe-global",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/safe-global/safe-locking/issues"
},
"homepage": "https://github.com/safe-global/safe-locking#readme",
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.1",
"@safe-global/safe-token": "github:@safe-global/safe-token",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.19.4",
"hardhat-deploy": "^0.11.45",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solc": "^0.8.23-fixed",
"solhint": "^4.1.1",
"yargs": "^17.7.2"
},
"overrides": {
"@safe-global/safe-token": {
"ethers": "^6.8.0"
}
}
}