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

59 lines
1.5 KiB
JSON

{
"name": "pegjs",
"version": "0.9.0",
"description": "Parser generator for JavaScript",
"homepage": "http://pegjs.org/",
"license": "MIT",
"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/asts.js",
"lib/compiler/javascript.js",
"lib/compiler/opcodes.js",
"lib/compiler/visitor.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-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",
"scripts": {
"test": "make hint && make spec"
},
"repository": {
"type": "git",
"url": "http://github.com/pegjs/pegjs.git"
},
"devDependencies": {
"jasmine-node": "= 1.14.5",
"uglify-js": "= 2.4.24",
"jshint": "= 2.8.0"
},
"engines": {
"node": ">= 0.10.0"
}
}