-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "@peggyjs/coverage",
"version": "1.3.2",
"decription": "Generate better code coverage for Peggy grammars",
"main": "lib/index.js",
"type": "module",
"keywords": [
"peggy,",
"pegjs,",
"coverage,",
"test,",
"unit,",
"edgecase"
],
"author": "Joe Hildebrand <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peggyjs/coverage.git"
},
"homepage": "https://github.com/peggyjs/coverage#readme",
"bugs": {
"url": "https://github.com/peggyjs/coverage/issues"
},
"scripts": {
"build": "peggy --format es test/minimal.peggy && tsc",
"docs": "typedoc",
"lint": "eslint .",
"test": "c8 node --test test/*.test.js"
},
"dependencies": {
"peggy": "4.2.0",
"source-map-generator": "0.8.0"
},
"devDependencies": {
"@peggyjs/eslint-config": "5.0.1",
"@types/node": "22.9.1",
"c8": "10.1.2",
"eslint": "9.15.0",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"pnpm": {
"overrides": {
"@eslint/plugin-kit": "^0.2.3",
"braces": "^3.0.3",
"cross-spawn": "^7.0.6",
"micromatch": "^4.0.8"
}
},
"engines": {
"node": ">=18"
}
}