-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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": "retry-on-ci",
"version": "0.1.2",
"description": "Retries a command but only in CI",
"bin": {
"retry-on-ci": "lib/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "npx eslint .",
"build": "tsc -p ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anaisbetts/retry-on-ci.git"
},
"keywords": [
"ci",
"github-actions",
"retry"
],
"author": "Anaïs Betts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anaisbetts/retry-on-ci/issues"
},
"homepage": "https://github.com/anaisbetts/retry-on-ci",
"dependencies": {
"debug": "^4.3.7",
"rxjs": "^7.8.1",
"spawn-rx": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/debug": "^4.1.12",
"@types/node": "^8.10.66",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-node": "^3.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}