-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.43 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@bitbar/cloud-api-client",
"version": "1.6.4",
"description": "Bitbar Cloud API Client for JavaScript",
"main": "dist/bitbar-cloud-api-client.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx rollup -c",
"test": "npx jest --runInBand",
"test:coverage": "npx jest --coverage=true --runInBand",
"lint": "npx eslint .",
"docs": "npx typedoc --options typedoc.json"
},
"type": "module",
"keywords": [
"testdroid",
"api",
"client",
"javascript",
"bitbar",
"cloud",
"nodejs",
"umd"
],
"author": "Marek Sierociński (https://github.com/marverix/)",
"contributors": [
{
"name": "Piotr Sapiejewski",
"email": "piotr.sapiejewski@smartbear.com"
},
{
"name": "Marietta Suchanek",
"email": "marietta.suchanek@smartbear.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitbar/cloud-api-client-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.23.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"core-js": "^3.32.0",
"eslint": "9.32.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"rollup": "^4.28.1",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typedoc": "0.27.6",
"typedoc-github-theme": "^0.2.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@babel/runtime": "^7.28.2",
"@bitbar/finka": "^2.4.4",
"axios": "^1.13.5",
"form-data": "^4.0.4",
"node-abort-controller": "^3.1.1",
"qs": "6.10.3"
},
"overrides": {
"glob": "^9.0.0",
"side-channel": "1.0.4",
"diff": "4.0.4",
"markdown-it": "14.1.1",
"serialize-javascript": "7.0.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}