forked from lazy-sol/access-control-upgradeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@ai-protocol/access-control-upgradeable",
"version": "1.0.1",
"description": "Enable the modular plug and play (PnP) architecture for your dapp by incorporating the role-based access control (RBAC) into the smart contracts",
"main": "index.js",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy"
},
"engines": {
"node": ">=16.20.0"
},
"keywords": [
"RBAC",
"Solidity",
"access control",
"modular architecture"
],
"author": "AI Protocol",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@openzeppelin/test-helpers": "^0.5.16",
"hardhat": "^2.19.4",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5"
},
"overrides": {
"tough-cookie": "^4.1.3",
"yargs-parser": "^5.0.1"
}
}