forked from db-migrate/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.92 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
85
86
87
{
"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": "1.0.0-beta.18",
"engines": {
"node": ">=8.0.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": {
"bluebird": "^3.1.1",
"db-migrate-shared": "^1.2.0",
"deep-extend": "^0.6.0",
"dotenv": "^5.0.1",
"final-fs": "^1.6.0",
"inflection": "^1.10.0",
"mkdirp": "~0.5.0",
"parse-database-url": "~0.3.0",
"rc": "^1.2.8",
"resolve": "^1.1.6",
"semver": "^5.3.0",
"tunnel-ssh": "^4.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@hapi/code": "5.x",
"@hapi/lab": "18.x",
"db-migrate-base": "^2.1.1",
"db-migrate-mysql": "^2.1.1",
"db-migrate-sqlite3": "^0.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"proxyquire": "^1.4.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/node-db-migrate"
},
"scripts": {
"prepublishOnly": "node generateLoader.js",
"pretest": "eslint *.js lib/*.js",
"test": "lab",
"test:coverage": "lab -r html -o coverage.html"
}
}