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.
44 lines
955 B
44 lines
955 B
{ |
|
"name": "xmysql", |
|
"version": "0.4.9", |
|
"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": { |
|
"mocha": "^5.2.0", |
|
"should": "^13.1.2", |
|
"sleep": "^5.1.1", |
|
"supertest": "^3.0.0" |
|
} |
|
}
|
|
|