-
-
Notifications
You must be signed in to change notification settings - Fork 361
/
package.json
88 lines (88 loc) · 1.98 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
88
{
"name": "db-migrate",
"description": "Database migration framework for node.js",
"author": "Tobias Gurtzick",
"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.29",
"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.7.2",
"db-migrate-shared": "^1.2.0",
"deep-extend": "^0.6.0",
"dotenv": "^16.3.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.19.0",
"tunnel-ssh": "^4.0.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@hapi/code": "9.x",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/lab": "25.x",
"db-migrate-base": "^2.1.1",
"db-migrate-mysql": "^2.2.0",
"db-migrate-sqlite3": "^0.5.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"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"
}
}