-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 977 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
35
36
37
38
{
"name": "lezer-el",
"version": "0.0.1",
"description": "Lezer-based EL 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": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"lezer-generator": "^0.9.0",
"mocha": "^7.1.1",
"rollup": "^2.15.0"
},
"dependencies": {
"lezer": "^0.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/lezer-el.git"
},
"files": [
"dist"
],
"scripts": {
"build": "lezer-generator src/el.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/el.grammar --names -o src/parser && rollup -c",
"prepare": "npm run build",
"test": "mocha test/test-*.js",
"all": "npm run build && npm test"
}
}