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

38 lines
1.1 KiB
JSON

{
"name": "pegjs-dev",
"private": true,
"workspaces": [
"packages/*",
"tools/*",
"test",
"website"
],
"scripts": {
"lint": "eslint .",
"spec": "mocha --recursive",
"benchmark": "node tools/benchmark/node",
"build-docs": "vuepress build docs",
"watch-docs": "vuepress dev docs",
6 years ago
"build-parser": "pegjs -c src/pegjs.config.js",
"generate-dist": "node tools/bundle/create-pegjs-dist",
6 years ago
"clean": "rimraf packages/pegjs/dist website/js/*-bundle.js examples/*.js",
"impact": "node tools/impact master",
"start": "node website/server.js",
"now-build": "npm run build-docs",
"test": "eslint . && nyc mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"coveralls": "3.0.2",
6 years ago
"rimraf": "2.6.2",
"eslint": "5",
"eslint-config-futagozaryuu": "5",
"mocha": "5.2.0",
"vuepress": "next",
"nyc": "13.1.0"
},
"engines": {
"node": ">= 6"
}
}