|
5 | 5 | "description": "GitHub Action to enforce that each commit in a pull request be linked to an Azure DevOps work item and automatically link the pull request to each work item ", |
6 | 6 | "main": "dist/index.js", |
7 | 7 | "scripts": { |
8 | | - "format": "prettier --write .", |
9 | | - "format-check": "prettier --check .", |
10 | | - "lint": "eslint src/**/*.ts", |
| 8 | + "format": "npx prettier --write .", |
| 9 | + "format-check": "npx prettier --check .", |
| 10 | + "lint": "npx eslint src/**/*.ts", |
11 | 11 | "test": "npm run test:bash && npm run test:js", |
12 | 12 | "test:bash": "./__tests__/action.test.sh", |
13 | | - "test:js": "jest", |
14 | | - "test:watch": "jest --watch", |
15 | | - "test:coverage": "jest --coverage", |
16 | | - "package": "ncc build --source-map --license licenses.txt main.js -o dist", |
| 13 | + "test:js": "npx jest", |
| 14 | + "test:watch": "npx jest --watch", |
| 15 | + "test:coverage": "npx jest --coverage", |
| 16 | + "package": "npx @vercel/ncc build --source-map --license licenses.txt main.js -o dist", |
17 | 17 | "all": "npm run format && npm run package" |
18 | 18 | }, |
19 | 19 | "repository": { |
|
25 | 25 | "node", |
26 | 26 | "setup" |
27 | 27 | ], |
28 | | - "author": "dc AG", |
| 28 | + "author": { |
| 29 | + "name": "Josh Johanning", |
| 30 | + |
| 31 | + "url": "https://github.com/joshjohanning" |
| 32 | + }, |
29 | 33 | "license": "MIT", |
30 | 34 | "dependencies": { |
31 | 35 | "@actions/core": "^1.9.1", |
|
0 commit comments