pegjs/package.json

40 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "pegjs-dev",
"private": true,
"workspaces": [
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": {
2018-12-22 15:36:16 +01:00
"lint": "eslint --ext .js,.vue . docs/.vuepress",
"test": "nyc mocha --recursive",
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",
"ci": "npm run lint && npm run test",
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": {
2019-02-12 10:41:45 +01:00
"codecov": "3.1.0",
2019-02-07 06:40:01 +01:00
"eslint": "5.13.0",
"eslint-config-futagozaryuu": "5.6.1",
2019-01-15 20:09:26 +01:00
"eslint-plugin-vue": "5.1.0",
2018-10-05 21:32:11 +02:00
"mocha": "5.2.0",
"mocha-junit-reporter": "1.18.0",
"mocha-multi-reporters": "1.1.7",
2019-02-07 06:40:01 +01:00
"nyc": "13.2.0",
2019-01-15 20:09:26 +01:00
"rimraf": "2.6.3",
"vuepress": "^1.0.0-alpha.32"
2017-11-28 21:42:01 +01:00
},
"engines": {
"node": ">= 6"
2017-11-28 21:42:01 +01:00
}
}