pegjs/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "pegjs-dev",
"private": true,
"workspaces": [
"docs",
2018-11-02 16:15:25 +01:00
"packages/*",
2018-11-04 09:26:22 +01:00
"tools/*",
2019-01-15 18:58:07 +01:00
"test"
2017-11-28 21:42:01 +01:00
],
"scripts": {
"lint": "eslint --ext .js,.vue . docs/.vuepress",
"spec": "mocha --reporter progress",
2019-02-15 22:07:40 +01:00
"benchmark": "node tools/benchmark",
2018-12-22 08:24:45 +01:00
"build-docs": "vuepress build docs",
"watch-docs": "vuepress dev docs",
2018-11-03 17:13:57 +01:00
"build-parser": "pegjs -c src/pegjs.config.js",
"build-dist": "bundle",
"watch-dist": "bundle --watch",
2019-01-15 18:58:07 +01:00
"clean": "rimraf packages/pegjs/dist examples/*.js",
"impact": "node tools/impact master",
2018-12-22 13:34:47 +01:00
"now-build": "npm run build-docs",
"test": "nyc mocha",
2019-02-12 10:41:45 +01:00
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
2017-11-28 21:42:01 +01:00
},
2019-02-12 03:21:45 +01:00
"dependencies": {
"@futagoza/eslint-config": "9.3.0",
"@futagoza/eslint-config-dev": "9.3.0",
2019-09-29 05:43:54 +02:00
"@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"
2017-11-28 21:42:01 +01:00
},
"engines": {
2019-09-29 04:31:51 +02:00
"node": ">= 8"
2017-11-28 21:42:01 +01:00
}
}