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": [
|
|
"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",
|
|
"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",
|
|
"ci": "npm run lint && npm run test",
|
|
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
|
|
},
|
|
"dependencies": {
|
|
"codecov": "3.1.0",
|
|
"eslint": "5.13.0",
|
|
"eslint-config-futagozaryuu": "5.6.1",
|
|
"eslint-plugin-vue": "5.1.0",
|
|
"mocha": "5.2.0",
|
|
"mocha-junit-reporter": "1.18.0",
|
|
"mocha-multi-reporters": "1.1.7",
|
|
"nyc": "13.2.0",
|
|
"rimraf": "2.6.3",
|
|
"vuepress": "^1.0.0-alpha.32"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
}
|
|
}
|