-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "zzapi-cli",
"version": "3.1.2",
"description": "CLI for zzAPI - an API testing framework",
"main": "dist/index.js",
"bin": {
"zzapi-cli": "dist/index.js"
},
"scripts": {
"prebuild": "node -p \"'export const CLI_VERSION = ' + JSON.stringify(require('./package.json').version) + ';\\nexport const CLI_NAME = \\\"' + Object.keys(require('./package.json').bin)[0].toString() + '\\\";'\" > src/utils/version.ts",
"build": "npx tsc",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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-cli/issues"
},
"homepage": "https://github.com/agrostar/zzapi-cli#readme",
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.1.0",
"table": "^6.8.2",
"zzapi": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}