-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.98 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
{
"name": "@cucumber/core",
"version": "0.9.0",
"description": "Core test case composition library for building a Cucumber implementation",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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 --fix --error-on-warnings",
"lint": "biome check --error-on-warnings",
"postbuild": "node -e \"require('.')\"",
"test": "mocha \"src/**/*.spec.ts\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/javascript-core.git"
},
"author": "David Goss",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/javascript-core/issues"
},
"homepage": "https://github.com/cucumber/javascript-core#readme",
"peerDependencies": {
"@cucumber/cucumber-expressions": "*",
"@cucumber/messages": ">=31.0.0",
"@cucumber/query": "*",
"@cucumber/tag-expressions": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@cucumber/biome-config": "github:cucumber/biome-config#v0.2.1",
"@cucumber/cucumber-expressions": "^20.0.0",
"@cucumber/gherkin": "^40.0.0",
"@cucumber/messages": "^33.0.0",
"@cucumber/query": "^16.0.0",
"@cucumber/tag-expressions": "^10.0.0",
"@microsoft/api-extractor": "^7.52.8",
"@tsconfig/recommended": "^1.0.10",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.19",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"mocha": "^11.7.1",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.19",
"typescript": "^6.0.0"
}
}