-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "xmysql",
"version": "0.6.0",
"description": "One command to generate REST APIs for any MySql database",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js --exit"
},
"keywords": [
"mysql-rest-api-generator",
"node-mysql-rest-api",
"rest",
"restful",
"rest-apis"
],
"engines": {
"node": ">= 7.6.0"
},
"bin": {
"xmysql": "bin/index.js"
},
"repository": "o1lab/xmysql",
"homepage": "https://github.com/nocodb/nocodb",
"author": "o1lab",
"license": "MIT",
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.2",
"cluster": "^0.7.7",
"colors": "^1.1.2",
"commander": "^2.11.0",
"cors": "^2.8.4",
"express": "^4.16.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"mysql": "^2.18.1"
},
"devDependencies": {
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^5.2.0",
"should": "^13.1.2",
"sleep": "^6.1.0",
"supertest": "^3.0.0"
}
}