This repository was archived by the owner on Oct 14, 2024. It is now read-only.
forked from firecow/gitlab-ci-local
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.72 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 3.72 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "gitlab-ci-local",
"description": "Tired of pushing to test your .gitlab-ci.yml?",
"main": "src/index.js",
"bin": "src/index.js",
"version": "4.23.3",
"scripts": {
"prepublishOnly": "npm run check-all && chmod +x src/index.js",
"pkg-linux": "pkg src/index.js --public -t node14-linux-x64 -o bin/linux/gitlab-ci-local && chmod +x bin/linux/gitlab-ci-local && gzip -c bin/linux/gitlab-ci-local > bin/linux.gz",
"pkg-macos": "pkg src/index.js --public -t node14-macos-x64 -o bin/macos/gitlab-ci-local && gzip -c bin/macos/gitlab-ci-local > bin/macos.gz",
"pkg-win": "pkg src/index.js --public -t node14-win-x64 -o bin/win/gitlab-ci-local && gzip -c bin/win/gitlab-ci-local.exe > bin/win.gz",
"pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win",
"pkg": "pkg",
"build": "rm -f src/*.js src/*.d.ts && tsc",
"check-all": "npm run build && npm run lint && npm run coverage && npm run audit",
"audit": "npm audit --parseable",
"lint": "npx eslint .",
"test": "jest --testTimeout 30000",
"coverage": "jest --coverage --testTimeout 30000",
"start": "ts-node --log-error src/index.ts --cwd examples/docker-compose-nodejs"
},
"dependencies": {
"base64url": "^3.0.1",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"checksum": "^1.0.0",
"deep-extend": "^0.6.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.1",
"pretty-hrtime": "^1.0.3",
"source-map-support": "^0.5.20",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/checksum": "0.1.33",
"@types/deep-extend": "0.4.31",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.2",
"@types/js-yaml": "4.0.3",
"@types/node-fetch": "2.5.12",
"@types/pretty-hrtime": "1.0.1",
"@types/source-map-support": "0.5.4",
"@types/yargs": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"depcheck": "1.4.2",
"eslint": "7.32.0",
"jest": "27.2.1",
"pkg": "5.3.2",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"engines": {
"node": ">=14.0.0"
},
"pkg": {
"assets": [
"package.json"
],
"scripts": [
"src/**/*.js"
]
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"*.js"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/explicit-module-boundary-types": [
"off"
],
"@typescript-eslint/semi": [
"error"
],
"@typescript-eslint/quotes": [
"error"
],
"@typescript-eslint/comma-dangle": [
"error",
"always-multiline"
],
"@typescript-eslint/member-delimiter-style": [
"error"
]
}
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.gitlab-ci-local/"
],
"coverageReporters": [
"lcov",
"json-summary",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "https://github.com/firecow/gitlab-ci-local.git"
},
"author": "Mads Jon Nielsen <madsjon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/firecow/gitlab-ci-local/issues"
},
"homepage": "https://github.com/firecow/gitlab-ci-local#readme",
"keywords": [
"git",
"gitlab",
"pipeline",
"local",
"ci",
"cd",
"push",
"untracked",
"uncomitted",
"gitlab-ci"
]
}