-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "cgapis",
"version": "0.6.00",
"description": "Generate API code for any client and any server from the API spec file",
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js --spec ./api.json --server-dir ./generated/server --client-dir ./generated/client --api-version v1 --client-lang javascript --server-lang nodejs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"ajv": "^6.10.2",
"array-operations": "^1.1.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"diff": "^3.5.0",
"json-schema-to-typescript": "^6.1.3",
"prettier": "^1.18.2"
},
"keywords": [
"api",
"rpc",
"web services",
"code generator",
"api generator",
"codegen",
"type-safe",
"swagger",
"json-schema",
"javascript",
"typescript",
"http",
"rest"
],
"bugs": {
"url": "https://github.com/HassanAlgoz/cgapis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HassanAlgoz/cgapis"
},
"author": "Hassan Algoz",
"license": "MIT"
}