forked from lezer-parser/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 974 Bytes
/
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
{
"name": "@polybase/lezer-parser-javascript",
"version": "1.4.1",
"description": "lezer-based JavaScript grammar (with polylang)",
"main": "dist/index.cjs",
"type": "module",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@lezer/generator": "^1.0.0",
"mocha": "^9.0.1",
"rollup": "^2.52.2",
"@rollup/plugin-node-resolve": "^9.0.0"
},
"dependencies": {
"@lezer/lr": "^1.3.0",
"@lezer/highlight": "^1.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/polybase/lezer-parser-javascript.git"
},
"scripts": {
"build": "lezer-generator src/javascript.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/javascript.grammar --names -o src/parser && rollup -c",
"prepare": "npm run build",
"test": "mocha test/test-*.js"
}
}