Direct packages that have been upgraded - @typescript-eslint/eslint-plugin - @typescript-eslint/parser - eslint All packages upgraded including indirect dependencies - @typescript-eslint/eslint-plugin@5.42.1 - @typescript-eslint/parser@5.42.1 - eslint@8.27.0 - @typescript-eslint/type-utils@5.42.1
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@adeattwood/diff-cov",
|
|
"version": "0.0.2",
|
|
"description": "Simple CLI to get test coverage on a diff",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"author": {
|
|
"name": "Ade Attwood",
|
|
"email": "code@adeattwood.co.uk",
|
|
"url": "https://adeattwood.co.uk"
|
|
},
|
|
"bin": {
|
|
"diff-cov": "./bin/diff-cov.js"
|
|
},
|
|
"files": [
|
|
"lib/**/*",
|
|
"bin/**/*",
|
|
"README.md"
|
|
],
|
|
"keywords": [
|
|
"diff",
|
|
"coverage",
|
|
"lcov"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint src tests",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"yargs": "^17.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.2",
|
|
"@types/node": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
"@typescript-eslint/parser": "^5.42.1",
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.2.2",
|
|
"prettier": "^2.7.1",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|