-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "lcov-utils",
"version": "0.0.0",
"description": "LCOV utils: parse, format, merge",
"keywords": [
"lcov",
"LCOV",
"cov",
"coverage",
"test",
"report",
"parse",
"format",
"merge"
],
"type": "module",
"main": "target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"module": "target/esm/index.mjs",
"types": "target/dts/index.d.ts",
"files": [
"target/cjs",
"target/esm",
"target/dts",
"target/coverage/lcov.info"
],
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:js": "yarn build:esbuild",
"build:dts": "yarn build:tsc",
"build:docs": "yarn build:typedoc",
"test": "concurrently 'npm:test:*'",
"test:lint": "yarn test:eslint",
"test:unit": "yarn test:c8",
"test:it": "yarn run:void",
"publish:draft": "yarn build && npm publish --no-git-tag-version --tag draft",
"publish:latest": "yarn build && npm publish --no-git-tag-version"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antongolub/misc.git",
"directory": "packages/lcov-utils"
},
"author": "Anton Golub <antongolub@antongolub.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antongolub/misc/issues"
},
"homepage": "https://github.com/antongolub/misc/tree/master/packages/lcov-utils",
"devDependencies": {
"@antongolub/infra": "workspace:*",
"@types/node": "^22.13.1"
}
}