-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "container-to-consul",
"version": "0.1.0",
"description": "Auto-register Docker containers in Consul",
"main": "lib/index.js",
"scripts": {
"test": "npm run --silent lint && npm run --silent unit-tests",
"lint": "eslint -c eslint.config.mjs lib",
"unit-tests": "istanbul cover _mocha -- --recursive --reporter spec --require should --require should-sinon"
},
"author": "Benoît Vidis",
"contributors": [ "Mekom Solutions (https://mekomsolutions.com/)" ],
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.2",
"bluebird": "^3.4.6",
"bunyan": "^1.8.1",
"docker-events": "0.0.2",
"dockerode": "^2.3.1",
"dockerode-promise": "^0.1.0",
"rc": "^1.1.6",
"rewire": "^2.5.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"codecov": "^3.8.3",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"istanbul": "^0.4.5",
"mocha": "^8.0.0",
"mock-require": "^1.3.0",
"should": "^11.1.1",
"should-sinon": "0.0.5",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2"
}
}