forked from zaach/jison
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"author": "Zach Carter <zach@carter.name> (http://zaa.ch)",
"name": "@ull-esit-pl/jison",
"description": "A parser generator with Bison's API",
"version": "0.6.3",
"license": "MIT",
"keywords": [
"jison",
"bison",
"yacc",
"parser",
"generator",
"lexer",
"flex",
"tokenizer",
"compiler"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/ULL-ESIT-PL/jison.git"
},
"bugs": {
"url": "https://github.com/ULL-ESIT-PL/jison/issues"
},
"main": "lib/jison",
"bin": "lib/cli.js",
"engines": {
"node": ">=0.4"
},
"publishConfig": { "access": "public" },
"dependencies": {
"json5": "^2.2.3",
"commander": "^11.1.0",
"ebnf-parser": "0.1.10",
"escodegen": "1.3.x",
"esprima": "1.1.x",
"@ull-esit-pl/jison-lex": "^0.3.10",
"JSONSelect": "0.4.0",
"lex-parser": "~0.1.3"
},
"devDependencies": {
"browserify": "2.x.x",
"gh-pages": "^6.3.0",
"test": "0.6.x",
"uglify-js": "~2.4.0"
},
"scripts": {
"test": "node tests/all-tests.js",
"pub": "source .env && npm publish",
"publi": "npm run pub",
"browserify": "browserify entry.js --exports require | npx uglifyjs > web/content/assets/js/jison.js",
"nanoc": "npm run browserify && cd web/ && nanoc compile",
"build": "npm run nanoc && cp -r examples web/output/jison/",
"website": "gh-pages -d web/output/jison --nojekyll",
"deploy": "npm run build && npm run website",
"preview": "cd web/ && nanoc view &\nopen http://localhost:3000/jison/",
"install-jison-lex": "source .env && npm i jison-lex"
},
"homepage": "https://gerhobbelt.github.io/jison/docs/"
}