-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
42 lines (42 loc) · 838 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
36
37
38
39
40
41
42
{
"author": "Zach Carter <[email protected]> (http://zaa.ch)",
"name": "jison-lex",
"description": "lexical analyzer generator used by jison",
"version": "0.3.4",
"keywords": [
"jison",
"parser",
"generator",
"lexer",
"flex",
"tokenizer"
],
"repository": {
"type": "git",
"url": "git://github.com/zaach/jison-lex.git"
},
"bugs": {
"email": "[email protected]",
"url": "http://github.com/zaach/jison-lex/issues"
},
"main": "regexp-lexer",
"bin": "cli.js",
"engines": {
"node": ">=0.4"
},
"dependencies": {
"lex-parser": "0.1.x",
"nomnom": "1.5.2"
},
"devDependencies": {
"test": "0.4.4"
},
"scripts": {
"test": "node tests/all-tests.js"
},
"directories": {
"lib": "lib",
"tests": "tests"
},
"homepage": "http://jison.org"
}