-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.65 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
{
"name": "pghc",
"version": "0.1.0",
"description": "A simple simulation of global-scale distributed database activity to test various features or multi-master replication and conflict resolution.",
"main": "index.js",
"scripts": {
"build": "babel esm --source-maps inline --out-dir cjs",
"prepublish": "npm run build",
"test": "ava --tap test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sikanrong/pghc.git"
},
"keywords": [
"postgres",
"replication",
"crypto"
],
"dependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"zk": "^1.1.1",
"pg": "^7.5.0",
"express": "^4.16.4",
"handlebars": "^4.0.12",
"q": "^1.5.1",
"ssh-exec": "^2.0.0",
"rxjs": "^6.3.3",
"pg-native": "^3.0.0",
"gulp": "^3.9.1",
"kubernetes-client": "^6.4.0",
"uuid": "^3.3.2",
"js-yaml": "^3.12.0",
"node-fetch": "^2.3.0",
"md5": "^2.2.1",
"cors": "^2.8.5"
},
"author": "Alexander Pilafian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sikanrong/pghc/issues"
},
"pghc": {
"num_bdr_groups": 3,
"num_total_pg_nodes": 9,
"wal_archive_path": "/home/app/bdr/wal-archive",
"public_api_base": "http://minikube.ingress/api"
},
"homepage": "https://github.com/sikanrong/pghc#readme",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}