generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
48
49
{
"name": "report-updated-dependencies",
"version": "1.0.0",
"private": true,
"description": "Github Action to adds a new comment to PR with a summary of changes to dependencies in a PR including release notes and changelogs",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist lib && node esbuild.config.mjs",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"tscheck": " tsc -p tsconfig.json --noEmit",
"test": "jest",
"all": "npm run build && npm run format && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AurorNZ/report-updated-dependencies.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "AurorNZ",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@ungap/structured-clone": "^1.2.0",
"bunyan": "1.8.15",
"renovate": "37.423.0",
"simple-git": "3.25.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/bunyan": "^1.8.11",
"@types/node": "~20.14.9",
"@types/ungap__structured-clone": "1.2.0",
"dotenv": "^16.4.5",
"esbuild": "0.23.0",
"esbuild-plugin-copy": "2.1.1",
"esbuild-register": "3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"prettier": "3.3.2",
"typescript": "^5.5.3"
}
}