-
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.58 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.58 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": "@metricinsights/qa-ai-rules",
"version": "1.1.0-beta.1",
"description": "Shared QA rules for AI coding tools (Cursor, Claude Code) across MI repositories",
"license": "MIT",
"keywords": [
"qa",
"testing",
"cursor",
"claude",
"ai",
"rules",
"metricinsights"
],
"repository": {
"type": "git",
"url": "https://github.com/mi-examples/qa-ai-rules.git"
},
"engines": {
"node": ">=22"
},
"bin": {
"qa-ai-rules": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "npm pack && node scripts/rename-pack.js",
"lint": "eslint .",
"format": "prettier --write .",
"pretest": "npm run build",
"test": "playwright test",
"release": "semantic-release",
"postinstall": "node scripts/postinstall.cjs",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"cac": "^6.7.14",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@eslint/compat": "^1.0.0",
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.0.0",
"@stylistic/eslint-plugin": "^2.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.8.1",
"semantic-release": "^24.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"typescript": "^5.0.0"
},
"author": "Serhii Shpak",
"files": [
"rules/",
"dist/",
"scripts/postinstall.cjs"
]
}