-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
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
{
"name": "peggy-tag",
"version": "2.0.1",
"description": "Tagged template strings for Peggy grammars",
"main": "lib/index.js",
"type": "module",
"types": "types/index.d.ts",
"files": [
"lib/",
"types/"
],
"scripts": {
"test": "node --experimental-vm-modules --test test/*-spec.js",
"coverage": "c8 npm test",
"lint": "eslint .",
"ts": "tsc",
"build": "npm run ts && npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peggyjs/peggy-tag.git"
},
"keywords": [
"grammar",
"peggy",
"string",
"template"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"contributors": [
"Kailey Kaes <kaileykaes@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/peggyjs/peggy-tag/issues"
},
"homepage": "https://github.com/peggyjs/peggy-tag#readme",
"dependencies": {
"@peggyjs/from-mem": "3.1.3",
"eslint": "^10.0.3",
"peggy": "5.1.0"
},
"devDependencies": {
"@peggyjs/eslint-config": "6.0.10",
"@types/node": "25.3.5",
"semver": "7.7.4",
"superc8": "12.2.4",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20"
}
}