-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 935 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
{
"name": "lezer-lua",
"version": "0.13.0",
"description": "Lezer-based lua 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": "Winston Durand <me@winstondurand.com>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"lezer-generator": "^0.13.0",
"mocha": "^8.1.3",
"prettier": "^2.2.1",
"rollup": "^2.27.1"
},
"dependencies": {
"lezer": "^0.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/R167/lezer-lua.git"
},
"scripts": {
"build": "lezer-generator src/lua.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/lua.grammar --names -o src/parser && rollup -c",
"prepare": "yarn build",
"test": "mocha test/test-*.js"
}
}