forked from gherkin-lint/gherkin-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.16 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
{
"name": "gherkin-lint",
"version": "2.6.0",
"description": "A Gherkin linter/validator written in javascript",
"author": "Vasiliki Siakka",
"contributors": [
{
"name": "Tim Brust"
},
{
"name": "Oskar Pfeifer-Bley"
},
{
"name": "Xavier Garcia Buils"
},
{
"name": "Rene Saarsoo"
},
{
"name": "Giuseppe DiBella"
},
{
"name": "Joscha Feth"
},
{
"name": "Simon St John-Green"
}
],
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/vsiakka/gherkin-lint"
},
"keywords": [
"gherkin",
"linter"
],
"dependencies": {
"commander": "2.9.0",
"gherkin": "4.0.0",
"glob": "7.0.5",
"lodash": "4.13.1"
},
"devDependencies": {
"chai": "4.1.1",
"eslint": "2.13.1",
"mocha": "2.5.3",
"mocha-sinon": "1.1.5",
"sinon": "1.17.4"
},
"bin": {
"gherkin-lint": "src/main.js"
},
"scripts": {
"demo": "node ./src/main.js . -c ./test-data-wip/.gherkin-lintrc",
"lint": "eslint .",
"mocha": "mocha --recursive",
"test": "npm run lint && npm run mocha"
},
"license": "ISC"
}