@fromeroc9/testform 1.0.1
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/LICENSE +674 -0
- package/README.md +76 -0
- package/dist/action/136.index.js +990 -0
- package/dist/action/360.index.js +92 -0
- package/dist/action/443.index.js +724 -0
- package/dist/action/449.index.js +13 -0
- package/dist/action/566.index.js +385 -0
- package/dist/action/605.index.js +241 -0
- package/dist/action/762.index.js +583 -0
- package/dist/action/869.index.js +529 -0
- package/dist/action/956.index.js +117 -0
- package/dist/action/998.index.js +894 -0
- package/dist/action/index.js +242 -0
- package/dist/cli/136.index.js +990 -0
- package/dist/cli/360.index.js +92 -0
- package/dist/cli/443.index.js +724 -0
- package/dist/cli/449.index.js +13 -0
- package/dist/cli/566.index.js +385 -0
- package/dist/cli/605.index.js +241 -0
- package/dist/cli/762.index.js +583 -0
- package/dist/cli/869.index.js +529 -0
- package/dist/cli/956.index.js +117 -0
- package/dist/cli/998.index.js +894 -0
- package/dist/cli/index.js +241 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fromeroc9/testform",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Testform transforms standard issue trackers into full-fledged Test Management ecosystems using declarative Gherkin configurations that can be shared, reviewed, and versioned as code.",
|
|
5
|
+
"author": "Flavio Romero <flavio.arc9@gmail.com>",
|
|
6
|
+
"main": "dist/cli/index.js",
|
|
7
|
+
"license": "GPL-3.0-or-later",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/fromeroc9/testform.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"test-management",
|
|
14
|
+
"test-as-code",
|
|
15
|
+
"gherkin",
|
|
16
|
+
"bdd",
|
|
17
|
+
"behavior-driven development",
|
|
18
|
+
"github",
|
|
19
|
+
"testform"
|
|
20
|
+
],
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README"
|
|
24
|
+
],
|
|
25
|
+
"bin": {
|
|
26
|
+
"testform": "dist/cli/index.js"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "jest",
|
|
30
|
+
"build": "ncc build src/index.ts -m -o dist/cli && ncc build src/action.ts -m -o dist/action",
|
|
31
|
+
"dev": "tsx src/index.ts"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/jest": "30.0.0",
|
|
35
|
+
"@types/node": "24.12.4",
|
|
36
|
+
"@vercel/ncc": "0.38.4",
|
|
37
|
+
"jest": "30.4.2",
|
|
38
|
+
"ts-jest": "29.4.11",
|
|
39
|
+
"tsx": "4.19.3",
|
|
40
|
+
"typescript": "5.8.2"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@actions/core": "1.10.1",
|
|
44
|
+
"@aws-sdk/client-dynamodb": "3.1054.0",
|
|
45
|
+
"@aws-sdk/client-s3": "3.1054.0",
|
|
46
|
+
"@azure/storage-blob": "12.31.0",
|
|
47
|
+
"@cucumber/gherkin": "39.1.0",
|
|
48
|
+
"@cucumber/messages": "30.1.0",
|
|
49
|
+
"@google-cloud/storage": "7.19.0",
|
|
50
|
+
"arg": "5.0.2",
|
|
51
|
+
"chalk": "4.1.2"
|
|
52
|
+
}
|
|
53
|
+
}
|