forked from zaach/jison
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 1.94 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": {
"name": "Zach Carter",
"email": "[email protected]",
"url": "http://zaa.ch"
},
"name": "jison-gho",
"description": "A parser generator with a Bison/YACC-similar API (derived off zaach/jison repo)",
"version": "0.6.5-222",
"license": "MIT",
"keywords": [
"jison",
"bison",
"yacc",
"parser",
"generator",
"lexer",
"flex",
"tokenizer",
"compiler"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/GerHobbelt/jison.git"
},
"bugs": {
"email": "[email protected]",
"url": "http://github.com/GerHobbelt/jison/issues"
},
"main": "dist/jison-cjs-es5.js",
"module": "lib/jison.js",
"bin": {
"jison": "dist/cli-cjs.js"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"ast-util": "0.6.0",
"@gerhobbelt/json5": "2.1.0-48",
"@gerhobbelt/nomnom": "1.8.4-30",
"recast": "0.20.4",
"@gerhobbelt/xregexp": "4.4.0-32"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"@gerhobbelt/benchmark": "2.1.4-33",
"@gerhobbelt/debug": "4.1.1-5",
"@gerhobbelt/js-yaml": "3.13.1-6",
"@gerhobbelt/live-server": "1.3.1-28",
"babel-preset-modern-browsers": "15.0.2",
"browserify": "17.0.0",
"chai": "4.2.0",
"cross-env": "7.0.2",
"get-stdin": "8.0.0",
"globby": "11.0.1",
"istanbul": "0.4.5",
"jison-gho": "0.6.1-216",
"mocha": "8.2.1",
"nyc": "15.1.0",
"rollup": "2.33.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"uglify-js": "3.11.5",
"unicode-12.0.0": "0.8.0",
"unicode-3.0.0": "0.7.5",
"unicode-4.0.0": "0.7.5"
},
"scripts": {
"build": "make",
"pub": "npm publish --access public",
"test": "make test",
"regen": "make sync",
"website": "node_modules/.bin/live-server docs/"
},
"homepage": "http://jison.org"
}