forked from pegjs/pegjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"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",
"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"
}
}