-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "zzapi",
"version": "2.1.1",
"description": "zzAPI is a REST API testing and documentation tool set. It is an open-source Postman alternative. ",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepack": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agrostar/zzapi.git"
},
"keywords": [
"api",
"testing",
"REST",
"postman"
],
"author": "agrostar",
"license": "MIT",
"bugs": {
"url": "https://github.com/agrostar/zzapi/issues"
},
"homepage": "https://github.com/agrostar/zzapi#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jsonpath": "^0.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"form-data-encoder": "^4.0.2",
"formdata-node": "^6.0.3",
"got": "11.8.6",
"jsonpath": "^1.1.1",
"yaml": "^2.3.4"
}
}