47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@adeattwood/diff-cov",
|
|
"version": "0.2.0",
|
|
"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.5.4",
|
|
"@types/node": "^20.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.6.4",
|
|
"prettier": "^3.0.2",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|