-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.14 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
{
"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/**/*"
],
"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 && eslint .",
"lint:js:fix": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --write && eslint . --fix",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.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": {
"@openzeppelin/contracts": "file:lib/@openzeppelin-contracts"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --log-level warn --ignore-path .gitignore --check",
"eslint"
],
"*.sol": [
"prettier --log-level warn --ignore-path .gitignore --check",
"solhint"
]
}
}