-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.82 KB
/
package.json
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
70
71
{
"name": "testmatic",
"version": "0.0.33",
"description": "CLI for Testmatic – a rapid-entry test case manager.",
"bin": {
"testmatic": "./dist/src/cli/cli-exec.js"
},
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": "./dist/core/index.js",
"./files": "./dist/files/index.js",
"./cli": "./dist/cli/index.js"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"build-readme": "ts-node ./src/build/build-readme",
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "ts-node ./src/cli/cli-exec",
"redeploy-cli": "npm uninstall -g && npm run build && npm i -g"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanconway/testmatic.git"
},
"author": "Jonathan A. Conway",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonathanconway/testmatic/issues"
},
"keywords": [
"testmatic",
"test",
"cases",
"tests",
"testing",
"manual",
"steps",
"qa",
"flows"
],
"dependencies": {
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/runtime": "^7.21.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.17.1",
"@types/node": "^20.1.3",
"@types/pluralize": "^0.0.29",
"@types/prompt-sync": "^4.2.0",
"@types/prompts": "^2.4.9",
"babel-jest": "^29.7.0",
"chalk": "^4.0.0",
"commander": "^12.0.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"pluralize": "^8.0.0",
"prettier": "^2.8.8",
"prompt-sync": "^4.2.0",
"prompts": "^2.4.2",
"test-jest": "^1.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4",
"zod": "^3.23",
"zod-validation-error": "^3.3.0"
}
}