-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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": "sparq-assistant",
"version": "1.1.0",
"description": "AI-powered QA test generation for Claude Code, Cursor, and Codex — generate Playwright and Cypress E2E suites from Jira, Figma, and Confluence requirements",
"type": "module",
"bin": {
"sparq-assistant": "./bin/sparq.mjs",
"sparq": "./bin/sparq.mjs"
},
"exports": {
".": "./bin/sparq.mjs"
},
"scripts": {
"test": "node --test 'test/**/*.test.mjs'",
"test:unit": "node --test test/unit/*.test.mjs",
"test:integration": "node --test test/integration/*.test.mjs",
"test:coverage": "node --test --experimental-test-coverage 'test/**/*.test.mjs'",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "npm run lint && npm test",
"prepublishOnly": "npm run check"
},
"devDependencies": {
"@biomejs/biome": "2.3.14"
},
"files": [
"bin/",
"claude/",
"docs/",
"examples/",
"mcp/",
"CHANGELOG.md"
],
"keywords": [
"claude-code",
"cursor",
"codex",
"qa",
"testing",
"playwright",
"cypress",
"e2e",
"test-automation",
"test-generation",
"ai-testing",
"manual-testing",
"regression-testing",
"testrail",
"qase",
"zephyr",
"figma",
"jira",
"confluence",
"mcp"
],
"author": "SparQ",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/STUkh/sparq-assistant"
},
"bugs": {
"url": "https://github.com/STUkh/sparq-assistant/issues"
},
"homepage": "https://github.com/STUkh/sparq-assistant#readme"
}