-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"author": "Friedemann Sommer <[email protected]>",
"bugs": {
"url": "https://github.com/friedemannsommer/lcov-parser/issues"
},
"description": "A LCOV file parser.",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@mxssfd/typedoc-theme": "1.1.7",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "20.17.12",
"c8": "10.1.3",
"chai": "5.1.2",
"mocha": "11.0.1",
"ts-node": "10.9.2",
"typedoc": "0.26.11",
"typedoc-plugin-mdn-links": "4.0.7",
"typescript": "5.6.3",
"unbuild": "2.0.0"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./constants": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.mjs",
"require": "./dist/constants.cjs"
},
"./lib/field-variant": {
"types": "./dist/lib/field-variant.d.ts",
"import": "./dist/lib/field-variant.mjs",
"require": "./dist/lib/field-variant.cjs"
},
"./parser": {
"types": "./dist/parser.d.ts",
"import": "./dist/parser.mjs",
"require": "./dist/parser.cjs"
},
"./promise": {
"types": "./dist/promise/index.d.ts",
"import": "./dist/promise/index.mjs",
"require": "./dist/promise/index.cjs"
},
"./stream": {
"types": "./dist/stream/index.d.ts",
"import": "./dist/stream/index.mjs",
"require": "./dist/stream/index.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://friedemannsommer.github.io/lcov-parser/",
"keywords": [
"lcov",
"parse",
"parser"
],
"license": "MIT",
"main": "./dist/index.cjs",
"name": "@friedemannsommer/lcov-parser",
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/friedemannsommer/lcov-parser.git"
},
"scripts": {
"build": "unbuild",
"check": "npm run check:biome && npm run check:ts",
"check:biome": "biome check src",
"check:ci": "biome ci src && npm run check:ts",
"check:ts": "tsc --project tsconfig.json --noEmit",
"coverage": "c8 mocha",
"docs": "typedoc",
"release": "npm run build && changeset publish",
"test": "mocha"
},
"sideEffects": false,
"type": "module",
"version": "4.0.2"
}