forked from smartcontractkit/payment-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 900 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 900 Bytes
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
{
"name": "@chainlink/payment-abstraction",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "forge test --isolate",
"test:coverage": "forge coverage --no-match-coverage '^(src/vendor/|src/libraries/|script/).*' --no-match-path '*invariants*' --report lcov && genhtml -o coverage lcov.info",
"snapshot": "FOUNDRY_PROFILE=snapshot forge snapshot --isolate",
"solhint": "solhint --max-warnings 0 \"./src/**/*.sol\"",
"foundry": "foundryup --install v1.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"solhint": "^5.0.5",
"solhint-plugin-chainlink-solidity": "git+https://github.com/smartcontractkit/chainlink-solhint-rules.git#v1.2.1"
},
"devDependencies": {
"lcov-parse": "^1.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0"
},
"lint-staged": {
"*": "forge fmt"
}
}