-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "db-migrate-pg",
"version": "1.5.2",
"description": "A postgresql driver for db-migrate",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js",
"test": "lab -t 60"
},
"repository": {
"type": "git",
"url": "https://github.com/db-migrate/pg.git"
},
"keywords": [
"db-migrate",
"migrate",
"migration",
"pg",
"postgres",
"postgresql",
"sql",
"database",
"db",
"migrator",
"driver"
],
"author": "Tobias Gurtzick",
"license": "MIT",
"bugs": {
"url": "https://github.com/db-migrate/pg/issues"
},
"homepage": "https://github.com/db-migrate/pg",
"dependencies": {
"bluebird": "^3.1.1",
"db-migrate-base": "^2.3.0",
"pg": "^8.11.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.1.3",
"db-meta": "^0.4.1",
"db-migrate-shared": "^1.1.2",
"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"
},
"overrides": {
"graceful-fs": "^4.2.11"
}
}