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

41 lines
1.2 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": {
"@futagoza/eslint-config": "9.3.0",
"@futagoza/eslint-config-dev": "9.3.0",
"@types/node": "6",
"codecov": "3.6.1",
"eslint": "6.4.0",
"mocha": "6.2.0",
"mocha-junit-reporter": "1.23.1",
"mocha-multi-reporters": "1.1.7",
"nyc": "14.1.1",
"rimraf": "3.0.0",
"vuepress": "1.1.0"
},
"engines": {
"node": ">= 6"
}
}