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.
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "pegjs",
|
|
"version": "0.11.0-dev",
|
|
"description": "Parser generator for JavaScript",
|
|
"keywords": [
|
|
"parser generator",
|
|
"PEG"
|
|
],
|
|
"homepage": "https://pegjs.org/",
|
|
"repository": "pegjs/pegjs",
|
|
"license": "MIT",
|
|
"contributors": [
|
|
"David Majda <david@majda.cz> (https://majda.cz/)",
|
|
"Futago-za Ryuu <futagoza.ryuu@gmail.com>"
|
|
],
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"!lib/.eslintrc.js"
|
|
],
|
|
"types": "lib/typings/pegjs.d.ts",
|
|
"main": "lib/peg.js",
|
|
"bin": "bin/peg.js",
|
|
"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 master",
|
|
"test:server": "node test/server/run",
|
|
"test": "nyc gulp",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "6.26.0",
|
|
"babel-preset-env": "1.6.1",
|
|
"babelify": "8.0.0",
|
|
"browserify": "16.1.1",
|
|
"chai": "4.1.2",
|
|
"chai-like": "1.1.1",
|
|
"coveralls": "3.0.0",
|
|
"dedent": "0.7.0",
|
|
"del": "3.0.0",
|
|
"eslint-config-futagozaryuu": "4.17.x",
|
|
"express": "4.16.3",
|
|
"glob": "7.1.2",
|
|
"gulp": "4.0.0",
|
|
"gulp-eslint": "4.0.2",
|
|
"gulp-header": "2.0.5",
|
|
"gulp-mocha": "5.0.0",
|
|
"gulp-rename": "1.2.2",
|
|
"gulp-uglify": "3.0.0",
|
|
"morgan": "1.9.0",
|
|
"nyc": "11.6.0",
|
|
"pump": "3.0.0",
|
|
"sinon": "4.4.6",
|
|
"vinyl-buffer": "1.0.1",
|
|
"vinyl-source-stream": "2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
}
|
|
}
|