pegjs/package.json
Futago-za Ryuu c523cf5693 Update config for next.pegjs.org
- Enable 'smoothScroll' option
- Use '@vuepress/plugin-back-to-top'
- Use '@vuepress/plugin-google-analytics'
- Add 'docs/.vuepress/favicon.ico'
2019-09-29 05:07:17 +01:00

40 lines
1.1 KiB
JSON

{
"name": "pegjs-dev",
"private": true,
"workspaces": [
"docs",
"packages/*",
"tools/*",
"test"
],
"scripts": {
"lint": "eslint --ext .js,.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": "8",
"codecov": "3.6.1",
"eslint": "6.4.0",
"mocha": "6.2.0",
"nyc": "14.1.1",
"rimraf": "3.0.0",
"vuepress": "1.1.0"
},
"engines": {
"node": ">= 8"
}
}