-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "peggy-tracks",
"version": "3.2.0",
"description": "",
"main": "lib/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "ava",
"coverage": "c8 ava",
"dev:watch": "chokidar --initial --ignore \"coverage/**\" --ignore \"node_modules/**\" -c \"npm run coverage\" \"**/*.js\" \"**/*.json\" \"**/*.css\"",
"build": "tsc"
},
"bin": {
"peggy-tracks": "bin/peggy-tracks.js"
},
"types": "types/lib/index.d.ts",
"keywords": [
"railroad",
"diagram",
"grammar",
"peggy",
"peg.js"
],
"author": "Joe Hildebrand <[email protected]>",
"license": "MIT",
"repository": "peggyjs/peggy-tracks",
"bugs": "https://github.com/peggyjs/peggy-tracks/issues",
"dependencies": {
"commander": "^12.0.0",
"peggy": "^4.0.2"
},
"devDependencies": {
"@peggyjs/eslint-config": "^3.2.4",
"@peggyjs/eslint-plugin": "2.1.0",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"ava": "^6.1.2",
"c8": "^9.1.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.57.0",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}