forked from gherkin-lint/gherkin-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.75 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
{
"name": "gherkin-lint",
"version": "4.1.3",
"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"
}
],
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/vsiakka/gherkin-lint"
},
"keywords": [
"gherkin",
"linter"
],
"dependencies": {
"commander": "5.0.0",
"core-js": "3.6.4",
"gherkin": "9.0.0",
"glob": "7.1.6",
"lodash": "4.17.20",
"strip-json-comments": "3.0.1"
},
"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.0.0",
"sinon": "9.0.1"
},
"engines": {
"node": ">=10.0.0"
},
"bin": {
"gherkin-lint": "dist/main.js"
},
"scripts": {
"build": "babel src -d dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"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 -include=dist/** npm run mocha"
},
"license": "ISC"
}