-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "links-notation",
"version": "0.13.0",
"description": "Links Notation parser for JavaScript",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "bun run build:grammar && bun build src/index.js --outdir=dist --target=node",
"build:grammar": "peggy --format es -o src/parser-generated.js src/grammar.pegjs",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix"
},
"keywords": [
"lino",
"parser",
"protocol",
"links"
],
"author": "",
"license": "Unlicense",
"devDependencies": {
"bun-types": "^1.2.19",
"eslint": "^9.39.1",
"peggy": "^5.0.6"
},
"dependencies": {}
}