spiegel-keyman/resources/build/version/package.json
dependabot[bot] ea50559fc1
chore(deps): bump @actions/core from 1.8.2 to 1.9.1
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.8.2 to 1.9.1.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-18 19:58:19 +00:00

37 lines
975 B
JSON

{
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.0",
"typescript": "^4.5.4",
"yargs": "^15.1.0"
},
"description": "Automatically updates HISTORY.md based on pull requests",
"devDependencies": {
"@types/node": "^13.7.0",
"@types/semver": "^7.1.0",
"@zeit/ncc": "^0.21.0",
"semver": "^7.1.2",
"ts-node": "^8.6.2"
},
"engines": {
"node": "16"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@keymanapp/auto-history-action",
"private": true,
"scripts": {
"build": "npm run clean:dist; npm run build:dist",
"build:dist": "ncc build src/index.ts --minify --source-map --v8-cache",
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "run-p clean:*",
"clean:dist": "rm -rf dist",
"clean:lib": "rm -rf lib",
"types": "tsc --noEmit"
}
}