forked from synapsecns/sanguine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "@synapsecns/coverage-aggregator",
"version": "1.0.1",
"description": "Aggregates coverage from js/ts packages",
"author": "Trajan0x <[email protected]>",
"homepage": "https://github.com/synapsecns/sanguine/tree/main/packages/coverage-aggregator#readme",
"license": "MIT",
"directories": {
"lib": "lib"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "npm run lint:fix && npm run lint:check",
"lint:check": "eslint . --max-warnings=0 --ext ts --ext tsx --ext js --ext jsx",
"ci:lint": "npm run lint:check",
"build:go": " ",
"build": " ",
"build:slither": " ",
"lint:fix": "npm run lint:check --fix"
},
"devDependencies": {
"eslint": "^8.16.0",
"jest": "^28.1.3"
},
"dependencies": {
"glob": "^8.0.3",
"path": "^0.12.7",
"ts-jest": "^29.0.5",
"yargs": "^17.6.2"
},
"bin": {
"aggregate-coverage": "./bin/aggregate-coverage.js"
}
}