-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.24 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
47
48
49
50
51
52
53
54
55
56
{
"name": "mysql-rest-api",
"version": "0.1.0",
"description": "Easy to deploy MySQL RESTful api.",
"repository": {
"type": "git",
"url": "git://github.com/mlndz28/mysql-rest-api.git"
},
"license": "MIT",
"keywords": [
"mysql",
"api"
],
"scripts": {
"start": "node bin/api-cli"
},
"bin": {
"mysql-rest-api": "./bin/api-cli"
},
"files": [
"bin",
"api",
"generators",
"conf",
"server.js"
],
"dependencies": {
"async": "^2.5.0",
"body-parser": "^1.0.2",
"cli": "^1.0.1",
"express": "^4.10.6",
"jsdoc": "^3.5.5",
"lodash": "^4.17.4",
"mysql": "^2.5.4",
"openapi-comment-parser": "^1.0.0",
"swagger-ui-express": "^4.1.4"
},
"preferGlobal": "true",
"bugs": "https://github.com/mlndz28/mysql-rest-api/issues",
"contributors": [
{
"name": "Fabian Melendez",
"github": "https://github.com/mlndz28"
}
],
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-openapi": "0.0.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express-swagger-generator": "^1.1.17"
}
}