forked from mnapoli/exspec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "@mnapoli/exspec",
"version": "0.0.0",
"description": "Executable specs - run Gherkin feature files with an AI agent in the browser",
"type": "module",
"bin": {
"exspec": "./dist/cli.js"
},
"files": [
"dist",
"prompt-template.md"
],
"scripts": {
"build": "tsc && node scripts/add-shebang.js",
"prepublishOnly": "npm run build",
"dev": "tsx src/cli.ts",
"fixtures": "npm run build && cd fixtures && node ../dist/cli.js",
"test": "vitest run",
"lint": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"keywords": [
"gherkin",
"bdd",
"testing",
"executable-specifications",
"playwright",
"ai",
"claude",
"browser-testing",
"feature-tests"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mnapoli/exspec.git"
},
"homepage": "https://github.com/mnapoli/exspec",
"bugs": {
"url": "https://github.com/mnapoli/exspec/issues"
},
"author": "Matthieu Napoli",
"license": "MIT",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cucumber/gherkin": "^29.0.0",
"@cucumber/messages": "^25.0.0",
"@playwright/mcp": "^0.0.68",
"dotenv": "^16.4.0",
"dotenv-expand": "^12.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript": "^5.2.0",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}