-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.3 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@cucumber/node",
"version": "0.6.1",
"author": "David Goss (https://github.com/davidjgoss)",
"license": "MIT",
"type": "module",
"repository": "github:cucumber/cucumber-node",
"exports": {
".": "./lib/index.js",
"./bootstrap": "./lib/bootstrap/index.js",
"./reporters/*": "./lib/reporters/builtin/*.js",
"./runner": "./lib/runner/index.js"
},
"files": [
"lib/"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"coverage:check": "c8 --100 npm test",
"coverage:report": "c8 --reporter html npm test",
"docs": "typedoc",
"exports:check": "api-extractor run --verbose",
"exports:update": "api-extractor run --verbose --local",
"fix": "biome check --write --error-on-warnings",
"lint": "biome check --error-on-warnings",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run test:integration && npm run test:cck",
"test:cck": "npm run build && mocha \"test/cck/*.spec.ts\"",
"test:integration": "npm run build && mocha \"test/integration/*.spec.ts\"",
"test:unit": "mocha \"src/**/*.spec.ts\""
},
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/generator": "^7.28.5",
"@babel/types": "^7.28.5",
"@cucumber/ci-environment": "13.0.0",
"@cucumber/core": "0.8.3",
"@cucumber/cucumber-expressions": "19.0.0",
"@cucumber/gherkin": "38.0.0",
"@cucumber/html-formatter": "23.0.0",
"@cucumber/junit-xml-formatter": "0.9.0",
"@cucumber/messages": "32.0.1",
"@cucumber/query": "15.0.1",
"@cucumber/tag-expressions": "9.0.0",
"@teppeis/multimaps": "3.0.0",
"globby": "16.2.0",
"stack-utils": "2.0.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@cucumber/biome-config": "cucumber/biome-config#v0.1.0",
"@cucumber/compatibility-kit": "^28.0.0",
"@microsoft/api-extractor": "7.58.7",
"@tsconfig/node22": "^22.0.0",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__generator": "^7.27.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.14",
"@types/stack-utils": "^2.0.3",
"c8": "^11.0.0",
"chai": "^6.0.0",
"chai-exclude": "^3.0.0",
"mocha": "^11.0.1",
"tsx": "^4.21.0",
"type-fest": "^5.3.1",
"typedoc": "^0.28.0",
"typescript": "^5.7.3"
}
}