-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.4 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@bitbar/cloud-api-client",
"version": "1.2.10",
"description": "Bitbar Cloud API Client for JavaScript",
"main": "dist/bitbar-cloud-api-client.min.js",
"types": "dist/index.d.ts",
"scripts": {
"preinstall": "node lockfile-exists.js && npx npm-force-resolutions || echo 'Lockfile not found'",
"build": "npx rollup -c",
"test": "npx jest --runInBand",
"test:coverage": "npx jest --coverage=true --runInBand",
"lint": "npx eslint -c .eslintrc.js --ext .ts src",
"docs": "npx typedoc --out ./docs --ignoreCompilerErrors --mode modules --module umd --target ES5 --theme default --includes ./src src/CloudAPIClient.ts"
},
"resolutions": {
"terser": "5.16.5",
"semver": "7.5.4"
},
"keywords": [
"testdroid",
"api",
"client",
"javascript",
"bitbar",
"cloud",
"nodejs",
"umd"
],
"author": "Marek Sierociński (https://github.com/marverix/)",
"contributors": [
{
"name": "Piotr Sapiejewski",
"email": "[email protected]"
},
{
"name": "Marietta Suchanek",
"email": "[email protected]"
}
],
"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.23.2",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.12",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"core-js": "^3.32.0",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"rollup": "^2.70.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typedoc": "0.17.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@babel/runtime": "^7.22.10",
"@bitbar/finka": "^2.3.0",
"axios": "^0.26.1",
"form-data": "^4.0.0",
"node-abort-controller": "^3.0.1",
"qs": "^6.10.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}