-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 994 Bytes
/
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
{
"name": "oas-client",
"version": "0.0.8",
"description": "OpenAPI client generator. Creates at runtime a fully functional api client based on an OpenAPI Specification. Providing automatic methods creation parameters definitions and validations.",
"main": "lib/oas-client.js",
"scripts": {
"test": "mocha ./test/main.test.js"
},
"author": {
"name": "Diego ZoracKy",
"email": "[email protected]",
"url": "https://github.com/DiegoZoracKy/"
},
"repository": {
"type": "git",
"url": "git://github.com/DiegoZoracKy/oas-client.git"
},
"keywords": [
"oas",
"OAS",
"client",
"generator",
"sdk",
"OpenAPI",
"Open API",
"OpenAPI Specification",
"Open API Specification"
],
"license": "MIT",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nock": "^9.4.3"
},
"optionalDependencies": {
"ajv": "^6.5.3",
"yamljs": "^0.3.0"
}
}