-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.33 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.33 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@facet-coverage/core",
"version": "0.6.1",
"description": "Test every facet of your features - natural specifications with rigorous coverage tracking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"facet-coverage": "bin/facet-coverage.js",
"facet": "bin/facet-coverage.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./playwright": {
"import": "./dist/integrations/playwright.js",
"require": "./dist/integrations/playwright.js",
"types": "./dist/integrations/playwright.d.ts"
}
},
"files": [
"dist",
"bin",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run tsc && bun run scripts/build-client.ts",
"dev": "bun run tsc --watch",
"test": "bun test features/core features/cli features/reporters features/integrations",
"test:all": "bun test",
"lint": "eslint src",
"prepublishOnly": "bun run build",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags"
},
"keywords": [
"testing",
"coverage",
"playwright",
"requirements",
"traceability",
"documentation",
"facet",
"bdd",
"specifications"
],
"peerDependencies": {
"@playwright/test": ">=1.40.0"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
}
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"glob": "^10.3.10",
"chokidar": "^3.5.3"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/bun": "latest",
"@types/node": "^20.10.0",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"preact": "^10.28.2",
"preact-router": "^4.1.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.0"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iraycd/facet-coverage.git"
},
"bugs": {
"url": "https://github.com/iraycd/facet-coverage/issues"
},
"homepage": "https://github.com/iraycd/facet-coverage#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}