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"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.vue . docs/.vuepress",
"spec": "mocha --reporter progress",
"benchmark": "node tools/benchmark",
"build-docs": "vuepress build docs",
"watch-docs": "vuepress dev docs",
"build-parser": "pegjs -c src/pegjs.config.js",
"build-dist": "bundle",
"watch-dist": "bundle --watch",
"clean": "rimraf packages/pegjs/dist examples/*.js",
"impact": "node tools/impact master",
"now-build": "npm run build-docs",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"codecov": "3.3.0",
"eslint": "5.16.0",
"mocha": "6.1.3",
"mocha-junit-reporter": "1.22.0",
"mocha-multi-reporters": "1.1.7",
"nyc": "14.0.0",
"rimraf": "2.6.3",
"vuepress": "1.0.0-alpha.47"
},
"engines": {
"node": ">= 6"
}
}