forked from marmol-dev/mysql-to-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "mysql-to-objection",
"version": "0.1.0",
"description": "Generates an objection.js JSON and graphQL schema from an existing mysql database",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index"
},
"preferGlobal": true,
"bin": {
"mysql-to-objection": "bin/mysql-to-objection.js"
},
"author": "Trellian",
"repository": {
"type": "git",
"url": "https://github.com/Trellian/mysql-to-objection"
},
"license": "ISC",
"dependencies": {
"@types/gulp": "^4.0.4",
"@types/node": "^8.0.41",
"graceful-fs": "^4.1.11",
"gulp": "^3.9.1",
"gulp-changed": "^3.1.0",
"gulp-debug-streams": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"inquirer": "^1.2.3",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.16.6",
"mysql": "^2.11.1",
"pascal-case": "^2.0.1",
"pcre-to-regexp": "0.0.4",
"pluralize": "^7.0.0",
"pump": "^1.0.2",
"reflect-metadata": "^0.1.8",
"xserializer": "0.0.5",
"yargs": "^6.4.0"
}
}