-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "swagger-converter",
"version": "2.1.0",
"description": "Converts Swagger documents from version 1.x to version 2.0",
"main": "index.js",
"files": [],
"engines": {
"node": ">= 10.x"
},
"scripts": {
"test": "npm run lint && npm run testonly:cover && npm run prettier:check",
"lint": "eslint .",
"testonly": "mocha",
"testonly:cover": "nyc npm run testonly",
"prettier": "prettier --ignore-path .gitignore --write --list-different .",
"prettier:check": "prettier --ignore-path .gitignore --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/apigee-127/swagger-converter.git"
},
"keywords": [
"OAS",
"OpenAPI",
"Swagger",
"converter",
"API"
],
"author": "Mohsen Azimi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apigee-127/swagger-converter/issues"
},
"homepage": "https://github.com/apigee-127/swagger-converter",
"devDependencies": {
"chai": "4.3.0",
"eslint": "7.20.0",
"mocha": "8.3.0",
"nyc": "15.1.0",
"prettier": "2.2.1",
"sway": "2.0.6"
},
"dependencies": {
"urijs": "^1.19.6"
}
}