forked from gherkin-lint/gherkin-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.23 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
{
"name": "pickle-lint",
"version": "3.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"
}
],
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/xgbuils/pickle-lint"
},
"keywords": [
"gherkin",
"linter",
"cucumber"
],
"dependencies": {
"commander": "^2.20.0",
"gherkin": "^5.1.0",
"glob": "^7.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"mocha": "6.1.4",
"npm-check": "^5.9.0",
"nyc": "^14.1.1"
},
"bin": {
"pickle-lint": "src/main.js"
},
"scripts": {
"demo": "node ./src/main.js . -c ./test-data-wip/.gherkin-lintrc",
"lint": "eslint ./src ./test",
"lint-fix": "eslint ./src ./test --fix",
"test-only": "mocha --recursive",
"check": "npm-check -i gherkin",
"test": "npm run lint && npm run test-only && npm run check",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"coverage": "nyc --reporter=lcov --out-dir lib npm run test-only && nyc report"
},
"license": "ISC"
}