-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "query2app",
"version": "0.0.3",
"description": "Generates the endpoints from SQL -> URL mapping",
"keywords": [
"sql",
"generate",
"generator",
"skaffolding"
],
"bugs": {
"url": "https://github.com/php-coder/query2app/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/php-coder/query2app.git"
},
"license": "GPL-2.0",
"author": "Slava Semushin <[email protected]>",
"main": "index.js",
"bin": {
"query2app": "./src/cli.js"
},
"files": [
"src/**"
],
"scripts": {
"example:all": "npm run example:js && npm run example:ts && npm run example:go && npm run example:py",
"example:js": "cd examples/js/express/mysql; ../../../../src/cli.js --lang js",
"example:ts": "cd examples/ts/express/mysql; ../../../../src/cli.js --lang ts",
"example:go": "cd examples/go/chi/mysql; ../../../../src/cli.js --lang go",
"example:py": "cd examples/python/fastapi/postgres; ../../../../src/cli.js --lang python"
},
"dependencies": {
"ejs": "~3.1.10",
"js-yaml": "~3.14.0",
"minimist": "~1.2.8",
"node-sql-parser": "~3.0.4"
}
}