forked from talmago/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 847 Bytes
/
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
{
"name": "node-db-migrate",
"version": "1.0.2",
"description": "Simple and lightweight DB migration tool written in Node.js",
"main": "index.js",
"scripts": {
"lint": "eslint lib/**/*.js index.js test/**/*.js"
},
"bin": {
"db-migrate": "./bin/db-migrate.js"
},
"homepage": "https://github.com/felixge/node-mysql-migrate",
"repository": "git+https://github.com/talmago/node-db-migrate.git",
"author": "Tal Almagor <almagoric@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.1.1",
"cli-table2": "^0.1.9",
"commander": "^2.9.0",
"knex": "^0.9.0",
"lodash": "^3.10.1",
"log4js": "^0.6.29",
"mysql": "^2.10.0",
"mysql2": "^1.5.2",
"pg": "^4.4.3",
"rc": "^1.1.5"
},
"engines": {
"node": ">= 0.6"
},
"devDependencies": {
"eslint": "^1.10.3"
}
}