forked from db-migrate/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "db-migrate",
"description": "Database migration framework for node.js",
"author": "Tobias Gurtick",
"bin": "./bin/db-migrate",
"keywords": [
"database",
"db",
"migrate",
"migration",
"sqlite",
"mysql",
"pg",
"postgre",
"sql",
"migrations",
"db-migrate",
"postgresql",
"extensible",
"expandable",
"nosql",
"coffee",
"coffescript",
"mongo",
"mongodb",
"seed",
"seeds",
"seeder",
"migrator",
"programatic",
"programable",
"api"
],
"version": "0.10.5",
"engines": {
"node": ">=0.6.0"
},
"bugs": {
"url": "https://github.com/db-migrate/node-db-migrate/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/db-migrate/node-db-migrate.git"
},
"dependencies": {
"balanced-match": "^0.4.2",
"bluebird": "^3.1.1",
"db-migrate-shared": "^1.1.2",
"deep-extend": "^0.4.1",
"dotenv": "^2.0.0",
"final-fs": "^1.6.0",
"inflection": "^1.10.0",
"mkdirp": "~0.5.0",
"optimist": "~0.6.1",
"parse-database-url": "~0.3.0",
"pkginfo": "^0.4.0",
"prompt": "^1.0.0",
"rc": "^1.1.6",
"resolve": "^1.1.6",
"semver": "^5.3.0",
"tunnel-ssh": "^4.0.0"
},
"devDependencies": {
"code": "^4.1.0",
"db-migrate-base": "^1.2.5",
"db-migrate-mysql": "^1.1.7",
"db-migrate-sqlite3": "^0.2.1",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"lab": "^14.3.1",
"proxyquire": "^1.4.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.2"
},
"scripts": {
"pretest": "eslint *.js lib/*.js test/*.js bin/*",
"test": "make test-cov"
}
}