-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "@cucumber/gherkin-streams",
"version": "5.0.1",
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha",
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "npm run build",
"eslint:fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test"
},
"dependencies": {
"commander": "12.1.0",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@cucumber/gherkin": "^28.0.0",
"@cucumber/messages": "^24.0.0",
"@cucumber/message-streams": "^4.0.1",
"@types/mocha": "10.0.10",
"@types/node": "20.17.12",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"mocha": "10.8.2",
"nyc": "15.1.0",
"prettier": "^3.0.0",
"ts-node": "^10.7.0",
"typescript": "5.7.3"
},
"peerDependencies": {
"@cucumber/gherkin": ">=22.0.0",
"@cucumber/messages": ">=17.1.1",
"@cucumber/message-streams": ">=4.0.0"
},
"bugs": {
"url": "https://github.com/cucumber/gherkin-streams/issues"
},
"homepage": "https://github.com/cucumber/gherkin-streams#readme",
"directories": {
"test": "test"
},
"keywords": []
}