|
1 | 1 | { |
2 | 2 | "name": "@technote-space/github-action-log-helper", |
3 | | - "version": "0.1.2", |
| 3 | + "version": "0.1.3", |
4 | 4 | "description": "Logging helpers for GitHub Actions.", |
5 | | - "author": { |
6 | | - "name": "Technote", |
7 | | - "email": "technote.space@gmail.com", |
8 | | - "url": "https://technote.space" |
9 | | - }, |
10 | | - "license": "MIT", |
11 | 5 | "keywords": [ |
12 | 6 | "github", |
13 | 7 | "github actions" |
14 | 8 | ], |
15 | 9 | "homepage": "https://github.com/technote-space/github-action-log-helper", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/technote-space/github-action-log-helper/issues" |
| 12 | + }, |
16 | 13 | "repository": { |
17 | 14 | "type": "git", |
18 | 15 | "url": "https://github.com/technote-space/github-action-log-helper.git" |
19 | 16 | }, |
20 | | - "bugs": { |
21 | | - "url": "https://github.com/technote-space/github-action-log-helper/issues" |
| 17 | + "license": "MIT", |
| 18 | + "author": { |
| 19 | + "name": "Technote", |
| 20 | + "email": "technote.space@gmail.com", |
| 21 | + "url": "https://technote.space" |
22 | 22 | }, |
23 | 23 | "main": "dist/index.js", |
24 | 24 | "types": "dist/index.d.ts", |
25 | 25 | "files": [ |
26 | 26 | "dist" |
27 | 27 | ], |
| 28 | + "scripts": { |
| 29 | + "build": "tsc", |
| 30 | + "cover": "jest --coverage", |
| 31 | + "lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache", |
| 32 | + "lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'", |
| 33 | + "test": "yarn lint && yarn cover", |
| 34 | + "update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit" |
| 35 | + }, |
28 | 36 | "dependencies": { |
29 | | - "@actions/core": "^1.2.6" |
| 37 | + "@actions/core": "^1.2.6", |
| 38 | + "sprintf-js": "^1.1.2" |
30 | 39 | }, |
31 | 40 | "devDependencies": { |
32 | 41 | "@commitlint/cli": "^11.0.0", |
33 | 42 | "@commitlint/config-conventional": "^11.0.0", |
34 | | - "@technote-space/github-action-test-helper": "^0.6.0", |
| 43 | + "@technote-space/github-action-test-helper": "^0.6.1", |
35 | 44 | "@types/jest": "^26.0.14", |
36 | 45 | "@types/node": "^14.11.5", |
37 | 46 | "@typescript-eslint/eslint-plugin": "^4.4.0", |
|
46 | 55 | }, |
47 | 56 | "publishConfig": { |
48 | 57 | "access": "public" |
49 | | - }, |
50 | | - "scripts": { |
51 | | - "build": "tsc", |
52 | | - "test": "yarn lint && yarn cover", |
53 | | - "lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache", |
54 | | - "lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'", |
55 | | - "cover": "jest --coverage", |
56 | | - "update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit" |
57 | 58 | } |
58 | 59 | } |
0 commit comments