-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 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
38
39
{
"name": "@plutojl/lezer-julia",
"version": "0.12.3",
"description": "lezer-based Julia grammar",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"author": "Andrey Popp <[email protected]>",
"contributors": [
"Michiel Dral",
"Sergio A. Vargas <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@lezer/generator": "^1.7.0",
"mocha": "^10.4.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1"
},
"dependencies": {
"@lezer/common": "^1.2.1",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JuliaPluto/lezer-julia.git"
},
"scripts": {
"prepare": "rollup -c",
"test": "mocha test/test-*.js"
},
"packageManager": "[email protected]+sha512.bb197bb586aabeca42ce9113e2235af3edaeac5797d26c99067e58d401d4eb43fbd51b644431434dd2a5f612ee65ffcd20262016c62f3608eb39fbfa6eeb1de7"
}