-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"name": "@amiceli/vitest-cucumber",
"version": "6.3.0",
"description": "vitest tools to use Gherkin feature in unit tests",
"main": "dist/src/module.js",
"bin": {
"vitest-cucumber": "dist/cli-generate.js"
},
"exports": {
".": "./dist/src/module.js",
"./browser": "./dist/src/browser/index.js"
},
"types": "./dist/src/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc --declaration --project tsconfig.json",
"build:watch": "npx tsc -w --declaration --project tsconfig.json",
"build:script": "esbuild scripts/cli.ts --bundle --platform=node > dist/cli-generate.js",
"build:all": "npm run build && npm run build:script",
"lefthook:prepare": "lefthook install",
"lint": "biome check",
"lint:fix": "biome check --write",
"prebuild": "node prebuild.js",
"test": "npm run prebuild && vitest",
"test:unit": "npm run prebuild && vitest --run",
"test:coverage": "npm run prebuild && vitest run --coverage"
},
"keywords": [
"vitest",
"cucumber",
"Gherkin"
],
"author": "amiceli",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "4.0.4",
"esbuild": "0.28.0",
"lefthook": "2.1.5",
"typescript": "6.0.2",
"vite": "8.0.8"
},
"peerDependencies": {
"vitest": "4.0.4"
},
"dependencies": {
"callsites": "4.2.0",
"minimist": "1.2.8",
"parsecurrency": "1.1.1",
"ts-morph": "28.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiceli/vitest-cucumber.git"
},
"bugs": {
"url": "https://github.com/amiceli/vitest-cucumber/issues"
},
"homepage": "https://github.com/amiceli/vitest-cucumber#readme"
}