-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
146 lines (146 loc) · 3.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "gherkin-lint",
"version": "4.2.4",
"description": "A Gherkin linter/validator written in javascript",
"author": "Vasiliki Siakka",
"contributors": [
{
"name": "Tim Brust",
"url": "https://github.com/timbru31"
},
{
"name": "Oskar Pfeifer-Bley",
"url": "https://github.com/UFOMelkor"
},
{
"name": "Xavier Garcia Buils",
"url": "https://github.com/xgbuils"
},
{
"name": "Rene Saarsoo",
"url": "https://github.com/nene"
},
{
"name": "Giuseppe DiBella",
"url": "https://github.com/gd46"
},
{
"name": "Joscha Feth",
"url": "https://github.com/joscha"
},
{
"name": "Simon St John-Green",
"url": "https://github.com/SimonStJG"
},
{
"name": "Jonathan Hedstrom",
"url": "https://github.com/jhedstrom"
},
{
"name": "josemenveg",
"url": "https://github.com/josemenveg"
},
{
"name": "Guy Kisel",
"url": "https://github.com/guykisel"
},
{
"name": "Rory Price-Coggins",
"url": "https://github.com/roryp2"
},
{
"name": "JuanMa Ruiz",
"url": "https://github.com/JuanMaRuiz"
},
{
"name": "Matt Jarrett",
"url": "https://github.com/cujarrett"
},
{
"name": "Standa Opichal",
"url": "https://github.com/opichals"
},
{
"name": "Bloodsoul",
"url": "https://github.com/Bloodsoul"
},
{
"name": "David Goss",
"url": "https://github.com/davidjgoss"
},
{
"name": "Alexander Bayandin",
"url": "https://github.com/bayandin"
},
{
"name": "Mike O'Connor",
"url": "https://github.com/mikeoconnor0308"
},
{
"name": "Dave M",
"url": "https://github.com/dsm2005"
},
{
"name": "Justin Zelinsky",
"url": "https://github.com/justinzelinsky"
},
{
"name": "Mathieu Couette",
"url": "https://github.com/MathieuCouette"
},
{
"name": "David Rodríguez",
"url": "https://github.com/deivid-rodriguez"
},
{
"name": "David Merrill",
"url": "https://githubn.com/dsm2005"
}
],
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gherkin-lint/gherkin-lint.git"
},
"keywords": [
"gherkin",
"linter"
],
"dependencies": {
"commander": "11.0.0",
"core-js": "3.33.1",
"gherkin": "9.0.0",
"glob": "7.1.6",
"lodash": "4.17.21",
"strip-json-comments": "3.0.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"chai": "4.2.0",
"coveralls": "3.0.11",
"eslint": "6.8.0",
"mocha": "7.1.1",
"mocha-sinon": "2.1.2",
"mock-fs": "4.11.0",
"nyc": "15.1.0",
"sinon": "9.0.1"
},
"engines": {
"node": ">=10.0.0"
},
"bin": {
"gherkin-lint": "dist/main.js"
},
"scripts": {
"build": "babel src -d dist",
"demo": "node ./dist/main.js -c ./test-data-wip/.gherkin-lintrc test-data-wip/**",
"lint": "eslint ./src ./test",
"mocha": "mocha --recursive",
"prepare": "npm run build",
"test": "npm run lint && npm run build && nyc --reporter=lcovonly --reporter=html --reporter=text -include=dist/** npm run mocha"
},
"license": "ISC"
}