2011-01-24 16:05:20 +01:00
|
|
|
{
|
2018-09-08 03:39:12 +02:00
|
|
|
"name": "pegjs-dev",
|
|
|
|
"private": true,
|
|
|
|
"workspaces": [
|
2019-09-29 06:07:17 +02:00
|
|
|
"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": {
|
2019-09-29 04:24:42 +02:00
|
|
|
"lint": "eslint --ext .js,.vue . docs/.vuepress",
|
2019-03-27 07:49:04 +01:00
|
|
|
"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",
|
2019-02-15 01:54:31 +01:00
|
|
|
"build-dist": "bundle",
|
|
|
|
"watch-dist": "bundle --watch",
|
2019-01-15 18:58:07 +01:00
|
|
|
"clean": "rimraf packages/pegjs/dist examples/*.js",
|
2018-11-04 11:01:56 +01:00
|
|
|
"impact": "node tools/impact master",
|
2018-12-22 13:34:47 +01:00
|
|
|
"now-build": "npm run build-docs",
|
2019-03-27 07:49:04 +01:00
|
|
|
"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": {
|
2019-09-29 00:18:39 +02:00
|
|
|
"@futagoza/eslint-config": "9.3.0",
|
|
|
|
"@futagoza/eslint-config-dev": "9.3.0",
|
2019-09-29 05:43:54 +02:00
|
|
|
"@types/node": "8",
|
2019-09-29 00:18:39 +02:00
|
|
|
"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
|
|
|
}
|
2011-01-24 16:05:20 +01:00
|
|
|
}
|