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

52 lines
1.3 KiB
JSON

{
"name": "pegjs",
"version": "0.8.0",
"description": "Parser generator for JavaScript",
"homepage": "http://pegjs.majda.cz/",
"author": {
"name": "David Majda",
"email": "david@majda.cz",
"url": "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/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": "= 2.4.7",
"jshint": "= 2.3.0"
},
"engines": {
"node": ">= 0.8"
}
}