validate-yaml/package.json
dependabot[bot] 298a8f153c
build(deps-dev): bump ts-jest from 27.0.7 to 27.1.2 (#53)
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 27.0.7 to 27.1.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v27.0.7...v27.1.2)

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

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Britton Hayes <46035482+brittonhayes@users.noreply.github.com>
2021-12-24 13:39:31 -08:00

47 lines
1.2 KiB
JSON

{
"name": "validate-yaml",
"version": "0.0.0",
"private": true,
"description": "Validate YAML against a schema using github actions",
"main": "lib/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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brittonhayes/wails-build-action.git"
},
"keywords": [
"actions",
"node",
"go",
"wails"
],
"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.2",
"@typescript-eslint/parser": "^5.8.0",
"@vercel/ncc": "^0.32.0",
"eslint": "^8.5.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"js-yaml": "^4.1.0",
"prettier": "2.5.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}