-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "testing-farm",
"version": "1.10.0",
"description": "A NodeJS module to access Testing Farm instances through the REST API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn run build && yarn run format && yarn test"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/testing-farm.git"
},
"keywords": [
"testing-farm"
],
"author": "Jan Macku <[email protected]>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/redhat-plumbers-in-action/testing-farm/issues"
},
"homepage": "https://github.com/redhat-plumbers-in-action/testing-farm#readme",
"dependencies": {
"axios": "1.7.7",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.17.5",
"@vitest/coverage-v8": "2.0.5",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vitest": "2.0.5"
}
}