forked from eliasmamo/api-spec-converter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "api-spec-transformer",
"version": "0.2.6",
"description": "This package helps to convert between different API specifications. Supports OAS (Swagger 2), RAML 0.8, RAML 1.0, and Postman collections.",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoplightio/api-spec-converter.git"
},
"author": "Marc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoplightio/api-spec-converter/issues"
},
"homepage": "https://github.com/stoplightio/api-spec-converter#readme",
"dependencies": {
"js-yaml": "3.x.x",
"json-schema-compatibility": "1.x.x",
"json-schema-generator": "stoplightio/json-schema-generator",
"jsonschema": "1.x.x",
"lodash": "4.x.x",
"raml-1-parser": "1.1.x",
"request": "2.x.x",
"swagger-parser": "4.0.0-beta.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"browser-request": "^0.3.3",
"browserify-global-shim": "^1.0.3",
"chai": "^3.5.0",
"chai-fuzzy": "1.x.x",
"chai-string": "^1.2.0",
"coveralls": "^2.11.8",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^2.0.0",
"jscover": "^1.0.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"browser": {
"request": "browser-request"
},
"browserify": {
"transform": [
"browserify-global-shim"
]
},
"browserify-global-shim": {
"raml-1-parser": "RAML.Parser"
},
"directories": {
"example": "example",
"test": "test"
}
}