-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 997 Bytes
/
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
{
"name": "peggy-test",
"version": "0.0.0",
"description": "Unit test peggy grammars",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "node tools/compile.js",
"lint": "eslint .",
"test": "node test/index.test.js",
"coverage": "c8 npm test",
"ci": "npm run lint && npm run coverage"
},
"bin": {
"peggy-test": "bin/peggy-test.js"
},
"keywords": [
"coverage",
"peggy",
"peg.js",
"test",
"unit test"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"dependencies": {
"commander": "12.0.0",
"libtap": "1.4.1",
"temp": "0.9.4"
},
"devDependencies": {
"@peggyjs/eslint-config": "3.2.3",
"@peggyjs/eslint-plugin": "2.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"c8": "9.1.0",
"eslint": "8.57.0",
"typescript": "5.3.3"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=20.8"
}
}