-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 997 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
{
"name": "js_antlr",
"version": "1.0.0",
"description": "Partial port of aphyr/clj-antlr bindings for ANTLR 4 parser library, returning a tree or sexpr-formatted tree",
"main": "lib/parser.js",
"scripts": {
"build": "iced --bare --map --runtime node -o lib/ -c src/",
"watch": "iced --watch --bare --map --runtime node -o lib/ -c src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/nextorigin/js_antlr.git"
},
"keywords": [
"antlr",
"antlr4",
"parser",
"sexpr",
"lisp",
"clojure",
"clojurescript",
"grammar",
"lexer",
"infix",
"prefix"
],
"author": "doublerebel",
"license": "EPL-1.0",
"bugs": {
"url": "https://github.com/nextorigin/js_antlr/issues"
},
"homepage": "https://github.com/nextorigin/js_antlr#readme",
"dependencies": {
"antlr4": "^4.5.3"
},
"devDependencies": {
"iced-coffee-script": "^108.0.11"
}
}