-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "peggy-tag",
"version": "1.0.2",
"description": "Tagged template strings for Peggy grammars",
"main": "lib/index.js",
"type": "module",
"types": "types/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules --test test/*-spec.js",
"coverage": "c8 npm test",
"lint": "eslint .",
"ts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peggy/peggy-tag.git"
},
"keywords": [
"grammar",
"peggy",
"string",
"template"
],
"author": "Joe Hildebrand <[email protected]>",
"contributors": [
"Kailey Kaes <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/peggy/peggy-tag/issues"
},
"homepage": "https://github.com/peggy/peggy-tag#readme",
"dependencies": {
"@peggyjs/from-mem": "1.2.1",
"eslint": "^8.57.0",
"peggy": "4.0.2"
},
"devDependencies": {
"@peggyjs/eslint-config": "3.2.4",
"@peggyjs/eslint-plugin": "2.0.2",
"@types/node": "20.11.20",
"c8": "9.1.0",
"semver": "7.6.0",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.2.0"
}
}