-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
56 lines (56 loc) · 1.12 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
{
"name": "pg-diff-api",
"version": "1.5.2",
"description": "PostgreSQL migration strategy for NodeJS",
"pgver": "9.6+",
"main": "./src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test-compare": "node ./test/compareTest.js",
"test-migration": "node ./test/migrateTest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelsogos/pg-diff-api.git"
},
"keywords": [
"pg",
"pg-diff",
"postgre",
"postgresql",
"sql",
"diff",
"api",
"pgsql",
"schema",
"data",
"compare",
"tool"
],
"author": "Michael Sogos <[email protected]> (https://github.com/michaelsogos)",
"contributors": [
"captHarlock69",
"angulion",
"0xradical",
"AlekseiDanilov",
"JonathonCwik",
"olivierdalang"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelsogos/pg-diff-api/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/michaelsogos/pg-diff-api#readme",
"engines": {
"node": ">=8.11.1"
},
"devDependencies": {},
"dependencies": {
"deep-equal": "2.0.5",
"line-by-line": "0.1.6",
"pg": "8.5.1"
}
}