-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.44 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
77
78
{
"name": "CMTAT Factory",
"version": "",
"description": "Factory smart contracts for CMTAT",
"files": [
"contracts",
"test"
],
"scripts": {
"test": "npx hardhat test",
"lint:js": "npx eslint test",
"lint:js:fix": "npx eslint test --fix",
"lint:sol": "npx solium -d contracts",
"lint:sol:fix": "npx solium -d contracts --fix",
"lint:all": "npx run lint && npx run lint:sol",
"lint:all:fix": "npm run-script lint:js:fix && npm run-script lint:sol:fix",
"lint:sol:prettier": "npx prettier --write 'contracts/**/*.sol'",
"lint:js:prettier": "npx prettier --write test",
"lint:all:prettier": "npm run-script lint:js:prettier && npm run-script lint:js:fix && npm run-script lint:sol:prettier && npm run-script lint:sol:fix",
"coverage": "npx hardhat coverage",
"docgen": "npx hardhat docgen",
"uml": "npx sol2uml class contracts -c",
"size": "npx hardhat size-contracts"
},
"repository": {
"type": "git",
"url": "https://github.com/CMTA/CMTAT-factory.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security"
],
"author": "CMTA",
"license": "MPL",
"bugs": {
"url": "https://github.com/CMTA/CMTAT-factory/issues"
},
"homepage": "https://github.com/CMTA/CMTAT-factory",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eth-gas-reporter": "^0.2.27",
"ethereumjs-util": "^7.1.5",
"ethjs-abi": "^0.2.1",
"ethlint": "^1.2.5",
"hardhat": "^2.22.7",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"npm": "^10.2.5",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"sol2uml": "^2.5.20",
"solc": "^0.8.19",
"solgraph": "^1.0.2",
"solidity-code-metrics": "^0.0.25",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.35",
"surya": "^0.4.11"
},
"dependencies": {
"@openzeppelin/contracts": "5.6.1",
"@openzeppelin/contracts-upgradeable": "5.6.1"
}
}