forked from db-migrate/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 929 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
35
36
37
38
39
40
41
42
43
44
45
{
"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.6.4",
"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": {
"optimist": "~0.3.0",
"async": "~0.1.15",
"semver": "~1.0.14",
"mkdirp": "~0.3.4",
"moment": "~1.7.2",
"pkginfo": "~0.3.0",
"parse-database-url": "~0.2.0"
},
"devDependencies": {
"vows": "~0.7.0",
"db-meta": "~0.4.1",
"mysql": "~2.0.0",
"pg": "~1.0.0",
"sqlite3": "~2.1.0"
},
"scripts": {
"test": "node node_modules/.bin/vows"
}
}