-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 982 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 982 Bytes
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
{
"name": "overlapped",
"version": "0.1.2",
"description": "Find unit tests with 100% statement and branch overlap",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"overlapped": "bin/overlapped.mjs"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && rslib build",
"typecheck": "tsc --noEmit",
"prepack": "npm run build",
"pack:dry-run": "npm pack --dry-run"
},
"engines": {
"node": ">=22"
},
"keywords": [
"coverage",
"testing",
"vitest",
"jest",
"deduplication",
"overlap"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@rslib/core": "0.20.1",
"@types/node": "^25.9.1",
"typescript": "^5.8"
}
}