forked from zaach/jison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.06 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
{
"author": "Zach Carter <zach@carter.name> (http://zaa.ch)",
"name": "jison",
"description": "A parser generator with Bison's API",
"version": "0.3.6",
"keywords": [
"jison",
"bison",
"yacc",
"parser",
"generator",
"lexer",
"flex",
"tokenizer",
"compiler"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/zaach/jison.git"
},
"bugs": {
"email": "jison@librelist.com",
"url": "http://github.com/zaach/jison/issues"
},
"main": "lib/jison",
"bin": {
"jison": "lib/jison/cli-wrapper.js",
"jison2json": "lib/jison/jison2json.js",
"json2jison": "lib/jison/json2jison.js"
},
"engines": {
"node": ">=0.4"
},
"dependencies": {
"JSONSelect": "*",
"reflect": "*",
"nomnom": "0.4.3"
},
"devDependencies": {
"test": "*",
"jison": "*",
"uglify-js": "*"
},
"scripts": {
"test": "node tests/all-tests.js"
},
"directories": {
"lib": "lib",
"bin": "./bin"
},
"homepage": "http://jison.org",
"optionalDependencies": {}
}