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.
36 lines
992 B
JSON
36 lines
992 B
JSON
{
|
|
"name": "pegjs-dev",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"tools/*",
|
|
"test",
|
|
"website"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint --ext .js .",
|
|
"spec": "mocha --reporter progress",
|
|
"benchmark": "node tools/benchmark",
|
|
"build-parser": "pegjs -c src/pegjs.config.js",
|
|
"build-dist": "bundle",
|
|
"build-website": "node website/export",
|
|
"clean": "rimraf public packages/pegjs/dist examples/*.js",
|
|
"impact": "node tools/impact master",
|
|
"build": "node website/export --fresh",
|
|
"test": "nyc mocha",
|
|
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
|
|
},
|
|
"dependencies": {
|
|
"@futagoza/eslint-config": "11.2.0",
|
|
"@types/node": "8",
|
|
"codecov": "3.6.1",
|
|
"eslint": "6.6.0",
|
|
"mocha": "6.2.2",
|
|
"nyc": "14.1.1",
|
|
"rimraf": "3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 8"
|
|
}
|
|
}
|