-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "op-converter",
"description": "Customizable Converter for OpenAPI 3.0 to Postman 2.1 Collections",
"version": "0.0.6",
"author": "Wei Kang @weikangchia",
"bin": {
"op-converter": "./bin/run"
},
"bugs": "https://github.com/weikangchia/op-converter/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^5.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.10",
"@types/jest": "27.4.1",
"@types/node": "16.11.27",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.5.1",
"prettier": "2.6.2",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"typescript": "4.4.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/weikangchia/op-converter",
"keywords": [
"typescript",
"tools",
"swagger",
"postman",
"developer-tools",
"postman-collection",
"openapi3",
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "op-converter"
},
"repository": "weikangchia/op-converter",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc -b",
"test": "jest --passWithNoTests",
"version": "oclif-dev readme && git add README.md",
"prettier-format": "prettier --config .prettierrc.js 'src/**/*.ts' --write"
},
"types": "lib/index.d.ts"
}