-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
65
66
67
68
69
70
{
"name": "qase-javascript-commons",
"version": "2.5.10",
"description": "Qase JS Reporters",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./profilers": {
"types": "./dist/profilers/index.d.ts",
"default": "./dist/profilers/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"profilers": ["./dist/profilers/index.d.ts"]
}
},
"homepage": "https://github.com/qase-tms/qase-javascript",
"bugs": {
"url": "https://github.com/qase-tms/qase-javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qase-tms/qase-javascript.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"lint": "eslint .",
"test": "jest --passWithNoTests",
"clean": "rm -rf dist"
},
"author": "Qase Team <support@qase.io>",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.18.0",
"async-mutex": "~0.5.0",
"chalk": "^4.1.2",
"env-schema": "^5.2.1",
"form-data": "^4.0.5",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"mime-types": "^2.1.35",
"qase-api-client": "~1.1.1",
"qase-api-v2-client": "~1.0.4",
"strip-ansi": "^6.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/lodash.get": "^4.4.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.mergewith": "^4.6.9",
"@types/mime-types": "^2.1.4",
"@types/minimatch": "^6.0.0",
"@types/uuid": "^9.0.8",
"axios": "^1.13.5",
"jest": "^29.7.0",
"ts-jest": "^29.4.5"
}
}