forked from pegjs/pegjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.95 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pegjs",
"version": "0.11.0-dev",
"description": "Parser generator for JavaScript",
"keywords": [
"parser generator",
"PEG"
],
"homepage": "https://pegjs.org/",
"repository": "pegjs/pegjs",
"license": "MIT",
"contributors": [
"David Majda <[email protected]> (https://majda.cz/)",
"Futago-za Ryuu <[email protected]>"
],
"files": [
"bin",
"lib",
"!lib/.eslintrc.js"
],
"types": "lib/typings/pegjs.d.ts",
"main": "lib/peg.js",
"bin": "bin/peg.js",
"scripts": {
"lint": "gulp lint",
"spec": "gulp test",
"benchmark": "gulp benchmark",
"build:parser": "gulp build:parser",
"build:browser": "gulp build:browser",
"clean": "gulp clean",
"test:impact": "node test/impact",
"test:server": "node test/server/run",
"test": "nyc gulp",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-preset-env": "1.6.1",
"babelify": "8.0.0",
"browserify": "14.5.0",
"chai": "4.1.2",
"coveralls": "3.0.0",
"dedent": "0.7.0",
"del": "3.0.0",
"eslint-config-futagozaryuu": "3.7.x",
"express": "4.16.2",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-header": "1.8.9",
"gulp-mocha": "5.0.0",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"morgan": "1.9.0",
"nyc": "11.4.1",
"run-sequence": "2.2.0",
"sinon": "4.1.3",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"engines": {
"node": ">=4"
},
"nyc": {
"exclude": [
"test",
"gulpfile.js",
"**/.eslintrc.js"
],
"reporter": [
"text",
"text-summary"
]
}
}