forked from rngtng/postman2httpyac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "httpyac-import",
"version": "1.0.0",
"description": "CLI to convert Postman collection to httpyac files",
"homepage": "https://github.com/matthewturner/httpyac-import",
"repository": {
"type": "git",
"url": "https://github.com/matthewturner/httpyac-import"
},
"bugs": {
"url": "https://github.com/matthewturner/httpyac-import/issues"
},
"main": "./src/app.ts",
"bin": {
"httpyac-import": "./dist/app.js"
},
"scripts": {
"build": "npx tsc",
"test": "jest",
"coverage": "jest --coverage",
"import": "ts-node ./src/app.ts"
},
"keywords": [
"postman",
"cli",
"httpyac",
"collection",
"convert",
"import"
],
"author": "Matthew Turner",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"postman-collection": "^4.5.0",
"ts-command-line-args": "^2.5.1",
"tslog": "^4.9.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/postman-collection": "^3.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}