-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "oas-raml-converter-cli",
"version": "1.0.7",
"description": "This package is a CLI wrapper designed to allow conversion between OAS / RAML specifications via a command line interface. This module uses (https://github.com/mulesoft/oas-raml-converter) under the hood so its very reliable. Fully tested.",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"test": "mocha --no-deprecation ./test/*.js",
"format": "prettier --config ./.prettierrc --write ./**/*.js"
},
"bin": {
"oasraml-cli": "./bin/oasraml-cli.js",
"oas-raml-converter-cli": "./bin/oasraml-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daviemakz/oas-raml-converter-cli.git"
},
"keywords": [
"oas3",
"oas2",
"oas1",
"endpoints",
"tdd",
"rest",
"api",
"oas",
"raml",
"converter",
"cli",
"swagger",
"swagger-ui",
"swagger-editor"
],
"author": "David Makuni",
"license": "MIT",
"bugs": {
"url": "https://github.com/daviemakz/oas-raml-converter-cli/issues"
},
"homepage": "https://github.com/daviemakz/oas-raml-converter-cli#readme",
"dependencies": {
"fs": "0.0.2",
"mkdirp": "^0.5.1",
"oas-raml-converter": "^1.1.34",
"path": "^0.12.7",
"readline": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"bdd-stdin": "^0.2.0",
"chai": "^4.1.2",
"eslint": "^5.1.0",
"mocha": "^6.0.0",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2"
}
}