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

45 lines
1.2 KiB
JSON

{
"name": "pegjs-dev",
"private": true,
"workspaces": [
"packages/*",
"tools/*"
],
"scripts": {
"lint": "eslint .",
"spec": "mocha --recursive",
"benchmark": "benchmark",
6 years ago
"build-parser": "pegjs -c src/pegjs.config.js",
"generate-dist": "bundle",
6 years ago
"clean": "rimraf packages/pegjs/dist website/js/*-bundle.js examples/*.js",
"impact": "impact master",
"start": "node server.js",
"test": "eslint . && nyc mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@babel/core": "~7.1.0",
"@babel/preset-env": "~7.1.0",
"body-parser": "1.18.3",
"chai": "4.2.0",
"chai-like": "1.1.1",
"ejs": "2.6.1",
"express": "4.16.4",
"express-layout": "0.1.0",
"morgan": "1.9.1",
"sinon": "7.1.0"
},
"devDependencies": {
"coveralls": "3.0.2",
"dedent": "0.7.0",
6 years ago
"rimraf": "2.6.2",
"eslint": "5",
"eslint-config-futagozaryuu": "5",
"mocha": "5.2.0",
"nyc": "13.1.0"
},
"engines": {
"node": ">= 6"
}
}