-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.27 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
{
"name": "objection-model-generator",
"version": "1.1.04",
"repository": "https://github.com/joneldiablo/objection-model-generator",
"description": "generate the model from mysql database",
"main": "lib/ObjectionModelGenerator.js",
"author": "joneldiablo",
"keywords": [
"objection",
"objectionjs",
"model",
"automation",
"automagically",
"mysql",
"models"
],
"scripts": {
"init": "npm i && npm run build && npm run doc",
"start": "node main.js",
"build": "babel -d lib src --source-maps && yarn doc",
"test": "nodemon -e .mustache,.js --ignore test,output/*,.vscode/* --exec babel-node test",
"test:one": "babel-node test",
"doc": "jsdoc ./src -d documentation -c .jsdoc -r"
},
"bin": {},
"dependencies": {
"debug": "^4.3.3",
"dotenv": "^8.0.0",
"fs-extra": "^8.1.0",
"knex": "^0.21.17",
"mustache": "^4.1.0",
"mysql": "^2.17.1",
"mysql2": "^3.1.2",
"objection": "^2.2.14",
"pluralize": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.5.0",
"jsdoc": "^3.5.5",
"nodemon": "^1.18.4"
}
}