You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pegjs/package.json

54 lines
1.5 KiB
JSON

{
"name": "pegjs",
"version": "0.9.0",
"description": "Parser generator for JavaScript",
"keywords": ["parser generator", "PEG"],
"homepage": "http://pegjs.org/",
"bugs": "https://github.com/pegjs/pegjs/issues",
"license": "MIT",
"author": "David Majda <david@majda.cz> (http://majda.cz/)",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"VERSION",
"bin/pegjs",
"examples/arithmetics.pegjs",
"examples/css.pegjs",
"examples/javascript.pegjs",
"examples/json.pegjs",
"lib/compiler.js",
"lib/compiler/asts.js",
"lib/compiler/js.js",
"lib/compiler/opcodes.js",
"lib/compiler/visitor.js",
"lib/compiler/passes/generate-bytecode.js",
"lib/compiler/passes/generate-js.js",
"lib/compiler/passes/remove-proxy-rules.js",
"lib/compiler/passes/report-left-recursion.js",
"lib/compiler/passes/report-infinite-loops.js",
"lib/compiler/passes/report-missing-rules.js",
"lib/grammar-error.js",
"lib/parser.js",
"lib/peg.js",
"lib/utils/arrays.js",
"lib/utils/classes.js",
"lib/utils/objects.js",
"package.json"
],
"main": "lib/peg",
"bin": "bin/pegjs",
"repository": "pegjs/pegjs",
"scripts": {
"test": "make hint && make spec"
},
"devDependencies": {
"jasmine-node": "1.14.5",
"uglify-js": "2.4.24",
"jshint": "2.8.0"
},
"engines": {
"node": ">= 0.10.0"
}
}