forked from pegjs/pegjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "pegjs-fn",
"version": "0.1.0",
"description": "Functional version of PegJS, Parser generator for JavaScript",
"homepage": "http://shamansir.github.io/pegjs-fn/",
"author": {
"name": "David Majda",
"email": "david@majda.cz",
"url": "http://majda.cz/"
},
"contributors": [{
"name": "Anton Kotenko",
"email": "shaman.sir@gmail.com"
}],
"files": [
"CHANGELOG",
"LICENSE",
"README.md",
"VERSION",
"bin/pegjs-fn",
"examples/arithmetics.pegjs",
"examples/css.pegjs",
"examples/javascript.pegjs",
"examples/json.pegjs",
"lib/compiler.js",
"lib/compiler/opcodes.js",
"lib/compiler/passes/collect-blocks.js",
"lib/compiler/passes/compute-occurences.js",
"lib/compiler/passes/generate-fn-driven-javascript.js",
"lib/compiler/passes/remove-proxy-rules.js",
"lib/compiler/passes/report-left-recursion.js",
"lib/compiler/passes/report-missing-rules.js",
"lib/compiler.js",
"lib/grammar-error.js",
"lib/parser.js",
"lib/peg.js",
"lib/utils.js",
"package.json"
],
"main": "lib/peg",
"bin": "bin/pegjs-fn",
"scripts": {
"test": "make spec"
},
"repository": {
"type": "git",
"url": "http://github.com/shamansir/pegjs-fn.git"
},
"devDependencies": {
"jasmine-node": "= 1.11.0",
"uglify-js": "= 1.3.4",
"jshint": "= 0.9.1"
},
"engines": {
"node": ">= 0.6.6"
},
"scripts": {
"test": "jasmine-node --verbose spec"
}
}