-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.4 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
{
"name": "@cucumber/fake-cucumber",
"version": "18.0.0",
"description": "Fake Cucumber generates fake results",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"fake-cucumber": "bin/fake-cucumber"
},
"scripts": {
"test": "npm run test:unit && npm run test:acceptance",
"test:unit": "mocha --exclude test/acceptance.ts",
"test:acceptance": "npm run build && mocha test/acceptance.ts",
"eslint": "eslint --ext ts --max-warnings 0 src test",
"eslint:fix": "eslint --ext ts --max-warnings 0 --fix src test",
"coverage": "nyc --reporter=html --reporter=text mocha",
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/fake-cucumber.git"
},
"keywords": [
"cucumber"
],
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/fake-cucumber/issues"
},
"homepage": "https://github.com/cucumber/fake-cucumber",
"devDependencies": {
"@cucumber/gherkin": "^30.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/gherkin-utils": "^9.0.0",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^27.0.0",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.10",
"@types/node": "20.17.11",
"@types/stream-buffers": "3.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.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",
"prettier": "^3.0.0",
"source-map-support": "0.5.21",
"stream-buffers": "3.0.3",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@cucumber/ci-environment": "^10.0.1",
"@cucumber/cucumber-expressions": "^18.0.0",
"@cucumber/tag-expressions": "^6.1.0",
"@types/stack-utils": "2.0.3",
"commander": "12.1.0",
"glob": "11.0.0",
"stack-utils": "2.0.6"
},
"peerDependencies": {
"@cucumber/gherkin": ">=30.0",
"@cucumber/gherkin-streams": ">=5.0.1",
"@cucumber/gherkin-utils": ">=8.0.0",
"@cucumber/message-streams": ">=4.0.1",
"@cucumber/messages": ">=27.0"
},
"directories": {
"test": "test"
}
}