-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "@jamesives/fetch-api-data-action",
"description": "GitHub action for handling authenticated API requests, allowing you to save the data from the request into your workspace as an environment variable and a .json file.",
"author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)",
"version": "2.5.0",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
"root": true,
"scripts": {
"build": "rm -rf lib && tsc --declaration",
"test": "jest",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"lint:format": "prettier --write .",
"lint:format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesIves/fetch-api-data-action.git"
},
"bugs": {
"url": "https://github.com/JamesIves/fetch-api-data-action/issues"
},
"homepage": "https://github.com/JamesIves/fetch-api-data-action",
"keywords": [
"actions",
"api",
"data",
"fetch",
"json",
"store",
"ssr",
"github",
"github-action"
],
"dependencies": {
"@actions/core": "2.0.2",
"@actions/io": "2.0.0",
"async-retry": "1.3.3",
"mustache": "4.2.0"
},
"devDependencies": {
"@types/async-retry": "1.4.9",
"@types/jest": "30.0.0",
"@types/mustache": "4.2.6",
"@types/node": "25.0.9",
"@types/retry": "0.12.5",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.12.1",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"jest-circus": "30.2.0",
"prettier": "3.8.0",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.53.0"
}
}