-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
40
41
42
43
44
45
46
47
48
{
"author": "Zach Carter <zach@carter.name> (http://zaa.ch)",
"contributors": [
"Casiano Rodríguez León <crguezl@ull.edu.es>"
],
"name": "@ull-esit-pl/jison-lex",
"description": "lexical analyzer generator used by jison",
"version": "0.3.10",
"publishConfig": { "access": "public" },
"keywords": [
"jison",
"parser",
"generator",
"lexer",
"flex",
"tokenizer"
],
"repository": {
"type": "git",
"url": "https://github.com/ULL-ESIT-PL/jison-lex.git"
},
"bugs": {
"url": "https://github.com/ULL-ESIT-PL/jison-lex.git/issues"
},
"main": "regexp-lexer",
"bin": "cli.js",
"engines": {
"node": ">=0.4"
},
"dependencies": {
"lex-parser": "0.1.x",
"commander": "^11.0.3"
},
"devDependencies": {
"test": "0.4.4"
},
"scripts": {
"test": "node tests/all-tests.js",
"pub": "source .env && npm publish",
"grammar": "jison examples/grammar.jison -o examples/parser.js",
"clean": "rm -f examples/example.js examples/parser.js"
},
"directories": {
"lib": "lib",
"tests": "tests"
},
"homepage": "https://gerhobbelt.github.io/jison/docs/#lexical-analysis"
}