-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
30 lines (30 loc) · 1.15 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
{
"name": "language",
"version": "0.1.0",
"description": "A fast PEG parser generator with first class error support",
"keywords": [ "parser", "peg", "packrat", "generator", "compiler", "lexer", "tokenizer", "lex", "yacc", "bison", "ANTLR" ],
"author": {
"name":"Francisco Tolmasky",
"email":"francisco@tolmasky.com",
"url":"http://tolmasky.com"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/language",
"bin": {
"language": "./bin/language"
},
"bugs": {
"email": "francisco@tolmasky.com",
"url": "http://github.com/tolmasky/language/issues"
},
"engines": {
"node": ">= 0.4.0"
},
"homepage": "http://languagejs.com",
"repository": {
"type": "git",
"url": "git://github.com/tolmasky/language.git"
}
}