validate-yaml/package.json
dependabot[bot] 09d731789a
build(deps-dev): bump @types/node from 16.11.6 to 16.11.7 (#30)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.11.6 to 16.11.7.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-08 15:21:36 -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": "^16.11.7",
"@typescript-eslint/parser": "^5.3.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^8.2.0",
"eslint-plugin-github": "^4.3.4",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"js-yaml": "^4.1.0",
"prettier": "2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}