-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 KB
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
{
"name": "gherkin-lint-plus",
"version": "1.0.2",
"description": "Gherkin linter (TypeScript, @cucumber/gherkin)",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"bin": {
"gherkin-lint-plus": "dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Hari Krishna Chanumolu",
"repository": {
"type": "git",
"url": "git+https://github.com/krrish377/gherkin-lint-plus.git"
},
"homepage": "https://github.com/krrish377/gherkin-lint-plus#readme",
"scripts": {
"prebuild": "npm run test",
"build": "tsc",
"start": "node dist/main.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"@cucumber/gherkin": "^39.0.0",
"@cucumber/messages": "^32.2.0",
"commander": "^13.1.0",
"glob": "^10.4.5",
"jiti": "^2.4.2",
"lodash-es": "^4.18.1",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "~5.7.0",
"vitest": "^3.2.4"
}
}