-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1009 Bytes
/
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
{
"name": "graph-sync",
"version": "1.0.0",
"description": "Keep PostgreSQL and Neo4j in sync using Kafka Connector.",
"main": "src/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"esm": "^3.2.25",
"pg-cursor": "^2.7.1"
},
"peerDependencies": {
"avsc": ">=5.7.3",
"kafkajs": ">=1.15.0",
"neo4j-driver": ">=4.3.2",
"pg": ">=8.7.1"
},
"devDependencies": {
"@databases/pg-test": "^3.0.1",
"ava": "^3.15.0",
"avsc": "^5.7.3",
"kafkajs": "^1.15.0",
"neo4j-driver": "^4.3.2",
"pg": "^8.7.1"
},
"scripts": {
"test": "ava test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ww-tech/graph-sync.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ww-tech/graph-sync/issues"
},
"homepage": "https://github.com/ww-tech/graph-sync#readme",
"ava": {
"require": [
"esm"
]
}
}