|
2 | 2 | "name": "gitlab-runner-local",
|
3 | 3 | "main": "index.js",
|
4 | 4 | "scripts": {
|
5 |
| - "build-linux": "pkg dist/index.js -t node12-linux-x64 -o ./bin/linux/gitlab-runner-local", |
6 |
| - "build-macos": "pkg dist/index.js -t node12-macos-x64 -o ./bin/macos/gitlab-runner-local", |
7 |
| - "build-win": "pkg dist/index.js -t node12-win-x64 -o ./bin/win/gitlab-runner-local", |
| 5 | + "build-linux": "pkg dist/index.js -t node12-linux-x64 -o ./bin/linux/gitlab-runner-local && tar -czvf bin/linux.gz bin/linux/", |
| 6 | + "build-macos": "pkg dist/index.js -t node12-macos-x64 -o ./bin/macos/gitlab-runner-local && tar -czvf bin/macos.gz bin/macos/", |
| 7 | + "build-win": "pkg dist/index.js -t node12-win-x64 -o ./bin/win/gitlab-runner-local && tar -czvf bin/win.gz bin/win/", |
8 | 8 | "build-all": "npm run build-linux && npm run build-macos && npm run build-win",
|
9 | 9 | "build": "tsc",
|
10 | 10 | "lint": "tslint --project .",
|
11 | 11 | "lint-fix": "tslint --fix --project ."
|
12 | 12 | },
|
13 | 13 | "bin": "dist/index.js",
|
14 | 14 | "dependencies": {
|
15 |
| - "ansi-colors": "4.1.1", |
16 |
| - "dateformat": "3.0.3", |
17 |
| - "dot-prop": "5.2.0", |
18 |
| - "glob": "7.1.6", |
19 |
| - "pretty-hrtime": "^1.0.3", |
20 |
| - "shelljs": "0.8.3", |
21 |
| - "winston": "3.2.1", |
22 |
| - "yaml": "1.7.2", |
23 |
| - "yargs": "15.1.0" |
| 15 | + "ansi-colors": "4.x", |
| 16 | + "dateformat": "3.x", |
| 17 | + "dot-prop": "5.x", |
| 18 | + "glob": "7.x", |
| 19 | + "pretty-hrtime": "1.x", |
| 20 | + "shelljs": "0.x", |
| 21 | + "winston": "3.x", |
| 22 | + "yaml": "1.X", |
| 23 | + "yargs": "15.x" |
24 | 24 | },
|
25 | 25 | "pkg": {
|
26 | 26 | "targets": [
|
|
30 | 30 | "author": "Mads Jon Nielsen <madsjon@gmail.com>",
|
31 | 31 | "license": "ISC",
|
32 | 32 | "devDependencies": {
|
33 |
| - "@types/pretty-hrtime": "^1.0.0", |
34 |
| - "@types/shelljs": "0.8.6", |
35 |
| - "@types/yaml": "1.2.0", |
36 |
| - "@types/yargs": "13.0.4", |
37 |
| - "pkg": "4.4.2", |
38 |
| - "source-map-support": "0.5.16", |
39 |
| - "tslint": "5.20.1", |
40 |
| - "typescript": "3.7.4" |
| 33 | + "@types/pretty-hrtime": "1.x", |
| 34 | + "@types/shelljs": "0.x", |
| 35 | + "@types/yaml": "1.x", |
| 36 | + "@types/yargs": "13.x", |
| 37 | + "pkg": "4.x", |
| 38 | + "source-map-support": "0.x", |
| 39 | + "tslint": "5.x", |
| 40 | + "typescript": "3.x" |
41 | 41 | }
|
42 | 42 | }
|
0 commit comments