DiffCov/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2022-10-24 18:48:49 +00:00
{
2022-10-24 19:01:59 +00:00
"name": "@adeattwood/diff-cov",
2023-06-13 13:22:29 +00:00
"version": "0.2.0",
2022-10-24 19:01:59 +00:00
"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"
2022-10-24 19:01:59 +00:00
},
"devDependencies": {
2023-08-26 09:37:57 +00:00
"@types/jest": "^29.5.4",
2023-08-16 18:52:01 +00:00
"@types/node": "^20.5.0",
2023-08-26 09:37:57 +00:00
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
2024-01-14 10:34:22 +00:00
"eslint": "^8.56.0",
2023-08-16 18:52:01 +00:00
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
2023-08-26 09:37:57 +00:00
"jest": "^29.6.4",
2023-08-16 18:52:01 +00:00
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
2022-10-24 19:01:59 +00:00
"ts-node": "^10.9.1",
2023-08-16 18:52:01 +00:00
"typescript": "^5.1.6"
2022-10-24 19:01:59 +00:00
}
2023-08-16 18:52:01 +00:00
}