-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 801 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 801 Bytes
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
{
"name": "register-api",
"type": "module",
"private": true,
"version": "2.4.0",
"description": "Service for [docker swarm](https://docs.docker.com/engine/swarm/) worker nodes to register metadata and obtain a swarm join key.",
"main": "index.js",
"scripts": {
"build": "pkg index.js --target node16-alpine-x64",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taghubnet/register-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/taghubnet/register-api/issues"
},
"homepage": "https://github.com/taghubnet/register-api#readme",
"dependencies": {
"@sentry/node": "^5.5.0",
"node-fetch": "^2.6.7",
"tiny-env-config": "^1.0.0",
"tiny-http-router": "^2.3.0"
}
}