pegjs/package.json

77 lines
2 KiB
JSON
Raw Normal View History

{
2017-11-28 21:42:01 +01:00
"name": "pegjs",
2017-12-18 02:23:17 +01:00
"version": "0.11.0-dev",
2017-11-28 21:42:01 +01:00
"description": "Parser generator for JavaScript",
"keywords": [
"parser generator",
"PEG"
],
"homepage": "https://pegjs.org/",
2017-12-28 00:35:07 +01:00
"repository": "pegjs/pegjs",
2017-11-28 21:42:01 +01:00
"license": "MIT",
"contributors": [
"David Majda <david@majda.cz> (https://majda.cz/)",
"Futago-za Ryuu <futagoza.ryuu@gmail.com>"
],
"files": [
"bin",
"lib",
"!lib/.eslintrc.js"
],
2017-12-28 00:04:05 +01:00
"types": "lib/typings/pegjs.d.ts",
2017-11-28 21:42:01 +01:00
"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",
2018-01-28 03:08:20 +01:00
"test:impact": "node test/impact master",
2017-11-28 21:42:01 +01:00
"test:server": "node test/server/run",
2017-12-17 10:13:07 +01:00
"test": "nyc gulp",
"coverage": "nyc report --reporter=text-lcov | coveralls"
2017-11-28 21:42:01 +01:00
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-preset-env": "1.6.1",
2017-11-28 21:42:01 +01:00
"babelify": "8.0.0",
2018-02-01 22:51:17 +01:00
"browserify": "15.2.0",
2017-11-28 21:42:01 +01:00
"chai": "4.1.2",
2018-02-01 22:51:17 +01:00
"chai-like": "1.1.1",
2017-12-17 10:13:07 +01:00
"coveralls": "3.0.0",
"dedent": "0.7.0",
2017-11-28 21:42:01 +01:00
"del": "3.0.0",
2018-02-01 22:51:17 +01:00
"eslint-config-futagozaryuu": "3.9.x",
2017-11-28 21:42:01 +01:00
"express": "4.16.2",
"glob": "7.1.2",
"gulp": "3.9.1",
2018-02-01 22:51:17 +01:00
"gulp-eslint": "4.0.2",
"gulp-header": "2.0.1",
"gulp-mocha": "5.0.0",
2017-11-28 21:42:01 +01:00
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"morgan": "1.9.0",
"nyc": "11.4.1",
"run-sequence": "2.2.1",
2018-02-01 22:51:17 +01:00
"sinon": "4.2.2",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
2017-11-28 21:42:01 +01:00
},
"engines": {
"node": ">=4"
2017-12-16 23:00:05 +01:00
},
"nyc": {
"exclude": [
"test",
"gulpfile.js",
"**/.eslintrc.js"
],
"reporter": [
2017-12-17 10:13:07 +01:00
"text",
"text-summary"
2017-12-16 23:00:05 +01:00
]
2017-11-28 21:42:01 +01:00
}
}