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

74 lines
1.9 KiB
JSON

{
"name": "pegjs",
"version": "0.11.0-dev",
"description": "Parser generator for JavaScript",
"keywords": [
"parser generator",
"PEG"
],
"homepage": "https://pegjs.org/",
"bugs": "https://github.com/pegjs/pegjs/issues",
"license": "MIT",
"contributors": [
"David Majda <david@majda.cz> (https://majda.cz/)",
"Futago-za Ryuu <futagoza.ryuu@gmail.com>"
],
"files": [
"bin",
"lib",
"!lib/.eslintrc.js"
],
"main": "lib/peg.js",
"bin": "bin/peg.js",
"repository": "pegjs/pegjs",
"scripts": {
"lint": "gulp lint",
"spec": "gulp test",
"benchmark": "gulp benchmark",
"build:parser": "gulp build:parser",
"build:browser": "gulp build:browser",
"clean": "gulp clean",
"test:impact": "node test/impact",
"test:server": "node test/server/run",
"test": "nyc gulp"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babel-core": "6.26.0",
"dedent": "0.7.0",
"babelify": "8.0.0",
"browserify": "14.5.0",
"chai": "4.1.2",
"del": "3.0.0",
"eslint-config-futagozaryuu": "3.7.x",
"express": "4.16.2",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-header": "1.8.9",
"gulp-mocha": "4.3.1",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"morgan": "1.9.0",
"nyc": "11.3.0",
"run-sequence": "2.2.0",
"sinon": "4.1.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
"engines": {
"node": ">=4"
},
"nyc": {
"exclude": [
"test",
"gulpfile.js",
"**/.eslintrc.js"
],
"reporter": [
"text",
"text-summary"
]
}
}