|
2 | 2 | "name": "@jamesives/fetch-api-data-action", |
3 | 3 | "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.", |
4 | 4 | "author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)", |
5 | | - "version": "2.2.0", |
| 5 | + "version": "2.2.2", |
6 | 6 | "license": "MIT", |
7 | 7 | "main": "lib/lib.js", |
8 | 8 | "types": "lib/lib.d.ts", |
9 | 9 | "root": true, |
10 | 10 | "scripts": { |
11 | 11 | "build": "rm -rf lib && tsc --declaration", |
12 | 12 | "test": "jest", |
13 | | - "lint": "eslint src/**/*.ts __tests__/**/*.ts", |
14 | | - "lint:format": "prettier --write './**/*.{ts,js,json,yml,md}' './*.{ts,js,json,yml,md}'" |
| 13 | + "lint": "eslint --fix .", |
| 14 | + "lint:check": "eslint .", |
| 15 | + "lint:format": "prettier --write .", |
| 16 | + "lint:format:check": "prettier --check ." |
15 | 17 | }, |
16 | 18 | "repository": { |
17 | 19 | "type": "git", |
|
33 | 35 | "github-action" |
34 | 36 | ], |
35 | 37 | "dependencies": { |
36 | | - "@actions/core": "1.6.0", |
37 | | - "@actions/io": "1.1.1", |
| 38 | + "@actions/core": "1.9.0", |
| 39 | + "@actions/io": "1.1.2", |
38 | 40 | "async-retry": "1.3.3", |
39 | 41 | "cross-fetch": "3.1.5", |
40 | 42 | "mustache": "4.2.0" |
41 | 43 | }, |
42 | 44 | "devDependencies": { |
43 | 45 | "@types/async-retry": "1.4.3", |
44 | | - "@types/jest": "27.4.1", |
| 46 | + "@types/jest": "27.5.0", |
45 | 47 | "@types/mustache": "4.1.2", |
46 | | - "@types/node": "17.0.21", |
47 | | - "@typescript-eslint/eslint-plugin": "5.13.0", |
48 | | - "@typescript-eslint/parser": "5.13.0", |
49 | | - "eslint": "8.10.0", |
| 48 | + "@types/node": "18.0.0", |
| 49 | + "@typescript-eslint/eslint-plugin": "5.20.0", |
| 50 | + "@typescript-eslint/parser": "5.20.0", |
| 51 | + "eslint": "8.18.0", |
50 | 52 | "eslint-config-prettier": "8.5.0", |
51 | | - "eslint-plugin-jest": "26.1.1", |
| 53 | + "eslint-plugin-jest": "26.5.3", |
52 | 54 | "eslint-plugin-prettier": "4.0.0", |
53 | 55 | "jest": "27.5.1", |
54 | 56 | "jest-circus": "27.5.1", |
55 | 57 | "nock": "13.2.4", |
56 | | - "prettier": "2.5.1", |
57 | | - "ts-jest": "27.1.3", |
58 | | - "typescript": "4.6.2" |
| 58 | + "prettier": "2.7.1", |
| 59 | + "ts-jest": "27.1.4", |
| 60 | + "typescript": "4.7.4" |
59 | 61 | } |
60 | 62 | } |
0 commit comments