-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.64 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.64 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "@openzeppelin/community-contracts",
"version": "0.0.1",
"description": "Solidity library of smart contracts from the OpenZeppelin Community",
"author": "OpenZeppelin Community <maintainers@openzeppelin.org>",
"license": "MIT",
"files": [
"/contracts/**/*.sol",
"!/contracts/mocks/**/*",
"!/contracts/vendor/erc4337-entrypoint"
],
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean && rimraf build contracts/build",
"docs": "npm run prepare-docs && oz-docs",
"docs:watch": "oz-docs watch contracts docs/templates docs/config.js",
"prepare": "husky",
"prepare-docs": "scripts/prepare-docs.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --check",
"lint:js:fix": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --write",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/!(vendor)/**/*.sol' --check",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/!(vendor)/**/*.sol' --write",
"coverage": "scripts/checks/coverage.sh",
"test": "hardhat test",
"test:inheritance": "scripts/checks/inheritance-ordering.js artifacts/build-info/*"
},
"homepage": "https://openzeppelin.com/contracts/",
"repository": {
"type": "git",
"url": "https://github.com/OpenZeppelin/openzeppelin-community-contracts.git"
},
"bugs": {
"url": "https://github.com/OpenZeppelin/openzeppelin-community-contracts/issues"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"zeppelin"
],
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^5.10.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@openzeppelin/docs-utils": "^0.1.5",
"chai": "^4.4.1",
"ethers": "^6.12.1",
"graphlib": "^2.1.8",
"hardhat": "^2.22.3",
"hardhat-exposed": "^0.3.15",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.3.1",
"rimraf": "^6.0.1",
"solidity-ast": "^0.4.59",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --log-level warn --ignore-path .gitignore --check"
],
"*.sol": [
"prettier --log-level warn --ignore-path .gitignore --check"
]
}
}