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.
58 lines
1.4 KiB
JSON
58 lines
1.4 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 lint && make spec"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "11.2.0",
|
|
"eslint": "1.10.3",
|
|
"jasmine-node": "1.14.5",
|
|
"uglify-js": "2.4.24"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
}
|
|
}
|