-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
40
41
42
43
44
45
46
47
{
"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": "[email protected]",
"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": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.56.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"
}
}