-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "lezer-parser-nix",
"version": "0.1.10",
"description": "Lezer grammar for the Nix language",
"main": "dist/index.cjs",
"author": "milahu",
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@lezer/common": "^1.1.2",
"@lezer/generator": "^1.5.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"mocha": "^10.2.0",
"rollup": "^4.9.1"
},
"dependencies": {
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.3.14"
},
"scripts": {
"build": "lezer-generator src/nix.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/nix.grammar --names -o src/parser && rollup -c",
"test": "mocha --experimental-modules test/test-*.js",
"on-change": "npm run build && npm run test",
"watch": "git ls-files | entr npm run on-change"
},
"repository": {
"type": "git",
"url": "https://github.com/milahu/lezer-parser-nix.git"
}
}