@automatify-au/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +389 -0
- package/dist/automatify.js +4011 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@automatify-au/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Forge-first CLI for Automatify Jira TestOps",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"automatify": "dist/automatify.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/automatify.js"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"automatify",
|
|
14
|
+
"jira",
|
|
15
|
+
"testops",
|
|
16
|
+
"bdd",
|
|
17
|
+
"forge",
|
|
18
|
+
"cli",
|
|
19
|
+
"qa",
|
|
20
|
+
"automation"
|
|
21
|
+
],
|
|
22
|
+
"homepage": "https://github.com/Automatify-Pty-Ltd/automatify-jira-testops/tree/main/apps/cli",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/Automatify-Pty-Ltd/automatify-jira-testops/issues"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/Automatify-Pty-Ltd/automatify-jira-testops.git",
|
|
29
|
+
"directory": "apps/cli"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc -p tsconfig.json",
|
|
39
|
+
"bundle": "node scripts/bundle.mjs",
|
|
40
|
+
"prepack": "npm run bundle",
|
|
41
|
+
"prepublishOnly": "npm run test && npm run bundle",
|
|
42
|
+
"pack": "npm pack",
|
|
43
|
+
"dev": "tsx src/index.ts --help",
|
|
44
|
+
"cli": "node dist/automatify.js",
|
|
45
|
+
"cli:dev": "tsx src/index.ts",
|
|
46
|
+
"lint": "echo 'no lint configured'",
|
|
47
|
+
"format": "echo 'no format configured'",
|
|
48
|
+
"test": "tsx --test src/*.test.ts"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@automatify/shared-types": "workspace:*"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^22.10.1",
|
|
55
|
+
"esbuild": "^0.28.0",
|
|
56
|
+
"tsx": "^4.19.2",
|
|
57
|
+
"typescript": "^5.6.3"
|
|
58
|
+
}
|
|
59
|
+
}
|