validate-yaml/package.json
dependabot[bot] 4b5287405f
build(deps-dev): Bump jest from 27.4.5 to 27.5.1
Bumps [jest](https://github.com/facebook/jest) from 27.4.5 to 27.5.1.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/compare/v27.4.5...v27.5.1)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-01 23:26:31 +00:00

52 lines
1.4 KiB
JSON

{
"name": "validate-yaml-action",
"version": "0.0.0-development",
"private": true,
"description": "Validate YAML against a schema using github actions",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test",
"semantic-release": "semantic-release"
},
"release": {
"branches": ["main"]
},
"repository": {
"type": "git",
"url": "https://github.com/brittonhayes/validate-yaml.git"
},
"keywords": [
"actions",
"node",
"typescript",
"yaml"
],
"author": "Britton Hayes",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"yaml-validator": "^3.0.1"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "^0.33.1",
"eslint": "^8.5.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"semantic-release": "^18.0.1"
}
}