-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "gherklin",
"version": "1.0.5",
"description": "A linter for Gherkin syntax",
"scripts": {
"test": "NODE_ENV=testing mocha",
"acceptance": "NODE_OPTIONS=--import=tsx ./node_modules/.bin/cucumber-js --config tests/acceptance/cucumber.mjs",
"eslint": "node_modules/.bin/eslint",
"eslint:fix": "node_modules/.bin/eslint --fix",
"prettier": "node_modules/.bin/prettier --check src/**/*.ts",
"prettier:fix": "node_modules/.bin/prettier --check src/**/*.ts --write",
"gherklin": "npx tsx ./bin/gherklin"
},
"engines": {
"node": ">=22"
},
"engineStrict": true,
"keywords": [
"gherkin",
"linter"
],
"main": "./src/index.ts",
"bin": "./bin/gherklin",
"files": [
"src"
],
"exports": {
".": {
"default": "./src/index.ts"
}
},
"type": "module",
"author": "Carl Markham <[email protected]>",
"license": "ISC",
"dependencies": {
"@cucumber/gherkin": "^29.0.0",
"chai": "^5.1.1",
"chalk": "^5.3.0",
"handlebars": "^4.7.8",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/chai": "^5.0.0",
"@types/chai-as-promised": "^8.0.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.4.2",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chai-as-promised": "^8.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gherklin": "./",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"uuid": "^10.0.0"
}
}