forked from gherkin-lint/gherkin-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.31 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
{
"name": "gherkin-lint",
"version": "3.3.2",
"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"
}
],
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/vsiakka/gherkin-lint"
},
"keywords": [
"gherkin",
"linter"
],
"dependencies": {
"commander": "2.18.0",
"gherkin": "5.1.0",
"glob": "7.1.3",
"lodash": "4.17.11"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"chai": "4.1.2",
"coveralls": "3.0.3",
"eslint": "5.14.1",
"mocha": "5.2.0",
"mocha-sinon": "2.1.0",
"mock-fs": "4.9.0",
"nyc": "14.0.0",
"sinon": "6.2.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",
"prepublish": "npm run build",
"test": "npm run lint && npm run build && nyc -include=dist/** npm run mocha"
},
"license": "ISC"
}