-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.55 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.55 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
{
"name": "fair-value",
"version": "1.0.0",
"description": "<p align=\"center\"> <img src=\"./assets/DIA_logo.png\" alt=\"Dia logo\" width=\"200\" height=\"auto\" style=\"padding: 20px;\"> </p>",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "forge test --contracts 'contracts/**/*.sol'",
"test:coverage": "forge coverage --contracts 'contracts/**/*.sol'",
"prettier": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"prettier:check": "npx prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint": "npm run lint:sol && npm run slither",
"lint:fix": "npm run prettier && npm run lint:sol:fix",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
"slither": "slither . --filter-paths 'node_modules|lib|test|script|scripts'",
"slither:json": "slither . --filter-paths 'node_modules|lib|test|script|scripts' --json output/slither-report.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diadata-org/fair-value.git"
},
"keywords": [],
"author": "DIA Data",
"license": "ISC",
"bugs": {
"url": "https://github.com/diadata-org/fair-value/issues"
},
"homepage": "https://github.com/diadata-org/fair-value#readme",
"devDependencies": {
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^1.4.3",
"solhint": "^6.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0"
}
}