-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "mongo-hydra",
"version": "0.2.0",
"description": "A open source mongo orchestration tool with high hopes",
"main": "index.js",
"scripts": {
"build": "pkg . --out-path dist",
"test": "nyc ava ./test/*.test.js ./test/**/*.test.js ./test/**/**/*.test.js --timeout=30s --verbose --serial",
"test-integration": "ava ./test-integration/*.test.js --timeout=30s --serial",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/unumotors/mongo-hydra.git"
},
"bin": {
"mongo-hydra": "./cli.js",
"hydra": "./cli.js"
},
"files": [
"/lib",
"cli.js",
"index.js"
],
"keywords": [
"mongo",
"mongodb",
"database",
"client",
"nodejs",
"operator",
"k8s"
],
"pkg": {
"targets": [
"node12-linux-x64",
"node12-macos-x64",
"node12-win-x64"
]
},
"author": "unu GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/unumotors/mongo-hydra/issues"
},
"homepage": "https://github.com/unumotors/mongo-hydra#readme",
"devDependencies": {
"ava": "^3.9.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"lodash": ">=4.17.19",
"pkg": "^4.4.9"
},
"dependencies": {
"js-yaml": "^3.14.0",
"mongodb": "^3.5.9",
"promise-retry": "^2.0.1",
"yargs": "^15.3.1"
}
}