-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.21 KB
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
{
"name": "docker-github-reloader",
"version": "0.0.28",
"description": "A package for restarting a docker container on updates of a git repo",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "jest --coverage",
"test": "npm run build && npm run testOnly",
"testOnly": "npm run coverage",
"start": "npm run build && node ./build/ignoreCoverage/development.js",
"_prepareBuild": "rm -rf ./build",
"build": "npm run _prepareBuild && rimraf ./build && tsc && cp package.json ./build && cp README.md ./build",
"dev": "nodemon",
"_prepareUpload": "npm run build && rimraf ./coverage && rimraf ./build/tests",
"_uploadBuild": "cd ./build && npm pack && npm publish && cd ..",
"_uploadWithoutPatch": "npm run _prepareUpload && npm run _uploadBuild && npm run clean",
"upload": "npm version patch && npm run _uploadWithoutPatch",
"clean": "rimraf ./build && gts clean",
"lint": "gts lint",
"fix": "gts fix",
"setup": "npm install && node setup.js && rimraf setup.js setup.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireboltCasters/docker-github-reloader"
},
"keywords": [
"docker",
"git",
"restart",
"ci"
],
"author": "Nils Baumgartner",
"contributors": [
{
"name": "Nils Baumgartner",
"email": "nilsbaumgartner1994@gmail.com",
"url": "https://github.com/NilsBaumgartner1994"
},
{
"name": "Steffen Droppelmann",
"email": "steffen.droppelmann@gmail.com",
"url": "https://github.com/FireboltCasters"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FireboltCasters/docker-github-reloader/issues"
},
"homepage": "https://github.com/FireboltCasters/docker-github-reloader#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@types/node-schedule": "^1.3.2",
"gts": "^3.1.0",
"jest": "^27.0.6",
"nodemon": "^2.0.9",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@babel/preset-typescript": "^7.14.5",
"@octokit/rest": "^18.12.0",
"axios": "^0.26.0",
"node-schedule": "^2.1.0"
}
}