forked from pegjs/pegjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "pegjs",
"version": "0.7.0",
"description": "Parser generator for JavaScript",
"homepage": "http://pegjs.majda.cz/",
"author": {
"name": "David Majda",
"email": "[email protected]",
"url": "http://majda.cz/"
},
"files": [
"CHANGELOG",
"LICENSE",
"README.md",
"VERSION",
"bin/pegjs",
"examples/arithmetics.pegjs",
"examples/css.pegjs",
"examples/javascript.pegjs",
"examples/json.pegjs",
"lib/compiler.js",
"lib/compiler/opcodes.js",
"lib/compiler/passes/generate-bytecode.js",
"lib/compiler/passes/generate-javascript.js",
"lib/compiler/passes/remove-proxy-rules.js",
"lib/compiler/passes/report-left-recursion.js",
"lib/compiler/passes/report-missing-rules.js",
"lib/grammar-error.js",
"lib/parser.js",
"lib/peg.js",
"lib/utils.js",
"package.json"
],
"main": "lib/peg",
"bin": "bin/pegjs",
"scripts": {
"test": "make spec"
},
"repository": {
"type": "git",
"url": "http://github.com/dmajda/pegjs.git"
},
"devDependencies": {
"jasmine-node": "= 1.11.0",
"uglify-js": "= 1.3.4",
"jshint": "= 0.9.1"
},
"engines": {
"node": ">= 0.6.6"
}
}