-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 991 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 991 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
30
31
32
33
34
35
36
{
"name": "lezer-r",
"version": "0.1.3",
"description": "lezer-based R grammar",
"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",
"author": "Travis Harrison <TravisHarrisonYeah@gmail.com>",
"license": "MIT",
"devDependencies": {
"@lezer/generator": "^1.7.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"mocha": "^10.8.2",
"rollup": "^4.24.4",
"rollup-plugin-copy": "^3.5.0"
},
"dependencies": {
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/TravisYeah/lezer-r.git"
},
"scripts": {
"build": "lezer-generator src/r.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/r.grammar --names -o src/parser && rollup -c",
"prepare": "npm run build",
"test": "mocha test/test-r.js"
}
}