mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
{ |
|
"name": "xmysql", |
|
"version": "0.5.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/o1lab/xmysql", |
|
"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.15.0" |
|
}, |
|
"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": "^5.1.1", |
|
"supertest": "^3.0.0" |
|
} |
|
}
|
|
|