-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 877 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 877 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
{
"name": "lezer-elixir",
"version": "1.1.3",
"license": "Apache-2.0",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"mocha": "^10.2.0",
"rollup": "^4.9.5"
},
"dependencies": {
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livebook-dev/lezer-elixir.git"
},
"scripts": {
"build": "lezer-generator src/elixir.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/elixir.grammar --names -o src/parser && rollup -c",
"prepare": "npm run build",
"test": "mocha test/test-*.js"
}
}