-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@mangosteen/background-healthcheck",
"version": "2.3.0",
"description": "Healthcheck for containerized background tasks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test-publish-npm": "npm pack",
"publish-npm": "npm publish --access public",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paya-cz/background-healthcheck.git"
},
"keywords": [
"healthcheck",
"docker",
"ecs",
"aws-ecs",
"fargate",
"container",
"task"
],
"author": "Paya",
"license": "MIT",
"bugs": {
"url": "https://github.com/paya-cz/background-healthcheck/issues"
},
"homepage": "https://github.com/paya-cz/background-healthcheck#readme",
"dependencies": {
"env-paths": "^2.2.1",
"write-file-atomic": "^3.0.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/node": "^14.18.0",
"@types/write-file-atomic": "^3.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
}
}