-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
57
58
59
60
{
"name": "@cucumber/gherkin-streams",
"version": "6.0.0",
"description": "Streams for reading Gherkin parser output",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"gherkin-javascript": "bin/gherkin"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/gherkin-streams.git"
},
"author": "Cucumber Limited <cukes@googlegroups.com>",
"license": "MIT",
"scripts": {
"test": "mocha",
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "npm run build",
"fix": "eslint --max-warnings 0 --fix src test && prettier --write src test",
"lint": "eslint --max-warnings 0 src test && prettier --check src test"
},
"dependencies": {
"commander": "14.0.3",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@cucumber/gherkin": "^39.0.0",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^32.0.0",
"@eslint/js": "^10.0.0",
"@types/mocha": "10.0.10",
"@types/node": "22.19.15",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"eslint": "^10.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.0.0",
"mocha": "11.7.5",
"nyc": "18.0.0",
"prettier": "^3.5.2",
"ts-node": "^10.7.0",
"typescript": "5.9.3"
},
"peerDependencies": {
"@cucumber/gherkin": ">=22.0.0",
"@cucumber/message-streams": ">=4.0.0",
"@cucumber/messages": ">=17.1.1"
},
"bugs": {
"url": "https://github.com/cucumber/gherkin-streams/issues"
},
"homepage": "https://github.com/cucumber/gherkin-streams#readme",
"directories": {
"test": "test"
},
"keywords": []
}