forked from db-migrate/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.2 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
57
{
"name": "db-migrate",
"description": "Database migration framework for node.js",
"author": "Jeff Kunkle",
"bin": "./bin/db-migrate",
"keywords": [
"database",
"db",
"migrate",
"migration",
"sqlite",
"mysql"
],
"version": "0.9.12",
"engines": {
"node": ">=0.6.0"
},
"bugs": {
"url": "https://github.com/kunklejr/node-db-migrate/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kunklejr/node-db-migrate.git"
},
"dependencies": {
"async": "~0.9.0",
"bluebird": "^2.9.12",
"dotenv": "~1.1.0",
"final-fs": "^1.6.0",
"mkdirp": "~0.5.0",
"moment": "~2.9.0",
"mongodb": "^2.0.23",
"mysql": "~2.6.0",
"optimist": "~0.6.1",
"parse-database-url": "~0.2.2",
"pg": "~4.3.0",
"pg-native": "^1.8.0",
"pkginfo": "~0.3.0",
"resolve": "^1.1.6",
"semver": "~4.3.3",
"sqlite3": "~3.0.4",
"tunnel-ssh": "^1.0.0"
},
"devDependencies": {
"code": "^1.3.0",
"db-meta": "~0.4.1",
"lab": "^5.2.1",
"proxyquire": "^1.4.0",
"rimraf": "~2.3.2",
"sinon": "^1.14.1",
"vows": "0.8.0"
},
"scripts": {
"test": "node node_modules/.bin/vows"
}
}