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.
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "pegjs-dev",
|
|
"private": true,
|
|
"workspaces": [
|
|
"editor",
|
|
"packages/*",
|
|
"tools/*",
|
|
"test"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.vue . docs/.vuepress",
|
|
"test": "nyc mocha --recursive",
|
|
"benchmark": "node tools/benchmark/node",
|
|
"build-docs": "vuepress build docs",
|
|
"watch-docs": "vuepress dev docs",
|
|
"build-parser": "pegjs -c src/pegjs.config.js",
|
|
"generate-dist": "node tools/bundle/create-pegjs-dist",
|
|
"clean": "rimraf packages/pegjs/dist examples/*.js",
|
|
"impact": "node tools/impact master",
|
|
"now-build": "npm run build-docs",
|
|
"ci": "npm run lint && npm run test",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "3.0.2",
|
|
"rimraf": "2.6.2",
|
|
"eslint": "5",
|
|
"eslint-config-futagozaryuu": "5",
|
|
"eslint-plugin-vue": "5",
|
|
"mocha": "5.2.0",
|
|
"mocha-junit-reporter": "1.18.0",
|
|
"mocha-multi-reporters": "1.1.7",
|
|
"vuepress": "next",
|
|
"nyc": "13.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
}
|
|
}
|