-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "qas-cli",
"version": "0.2.0",
"description": "QAS CLI is a command line tool for submitting your automation test results to QA Sphere at https://qasphere.com/",
"main": "./build/bin/qasphere.js",
"types": "./build/bin/qasphere.d.ts",
"scripts": {
"test": "vitest",
"build": "npm run clean && tsc",
"build:prod": "npm run clean && tsc --sourceMap false",
"clean": "rm -rf ./build",
"prepare": "husky",
"prepublishOnly": "npm run build",
"check": "npm run typecheck && npm run lint",
"typecheck": "tsc --noEmit true",
"lint": "eslint --quiet --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hypersequent/qas-cli.git"
},
"author": "Hypersequent",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hypersequent/qas-cli/issues"
},
"homepage": "https://github.com/Hypersequent/qas-cli#readme",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/escape-html": "^1.0.4",
"@types/node": "^20.12.10",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.32",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"msw": "^2.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vitest": "^1.6.0"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"escape-html": "^1.0.3",
"semver": "^7.6.2",
"xml2js": "^0.6.2",
"yargs": "^17.7.2",
"zod": "^3.23.7"
},
"bin": {
"qasphere": "build/bin/qasphere.js"
},
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"build/**/*.js.map",
"build/**/*.d.ts.map",
"README.md",
"LICENSE"
]
}