2021-10-01 00:58:11 -04:00
|
|
|
{
|
2022-01-01 19:48:44 -05:00
|
|
|
"name": "validate-yaml-action",
|
2022-01-01 19:46:47 -05:00
|
|
|
"version": "0.0.0-development",
|
2021-12-24 17:13:55 -05:00
|
|
|
"private": false,
|
2021-10-01 03:17:49 -04:00
|
|
|
"description": "Validate YAML against a schema using github actions",
|
2021-12-24 17:13:55 -05:00
|
|
|
"main": "dist/index.js",
|
2021-10-01 00:58:11 -04:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
2021-12-24 17:13:55 -05:00
|
|
|
"format:check": "prettier --check **/*.ts",
|
2021-10-01 00:58:11 -04:00
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
|
|
"test": "jest",
|
2022-01-01 19:46:47 -05:00
|
|
|
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test",
|
|
|
|
"semantic-release": "semantic-release"
|
|
|
|
},
|
|
|
|
"release": {
|
|
|
|
"branches": ["main"]
|
2021-10-01 00:58:11 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-01-01 19:46:47 -05:00
|
|
|
"url": "https://github.com/brittonhayes/validate-yaml.git"
|
2021-10-01 00:58:11 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
2021-12-24 17:13:55 -05:00
|
|
|
"typescript",
|
|
|
|
"yaml"
|
2021-10-01 00:58:11 -04:00
|
|
|
],
|
2021-10-01 03:17:49 -04:00
|
|
|
"author": "Britton Hayes",
|
2021-10-01 00:58:11 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-10-01 03:17:49 -04:00
|
|
|
"@actions/core": "^1.4.0",
|
|
|
|
"@actions/exec": "^1.1.0",
|
|
|
|
"yaml-validator": "^3.0.1"
|
2021-10-01 00:58:11 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-12-27 19:06:00 -05:00
|
|
|
"@types/node": "^17.0.5",
|
2021-12-27 19:09:46 -05:00
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
2021-12-24 17:18:54 -05:00
|
|
|
"@vercel/ncc": "^0.33.1",
|
2021-12-20 23:09:29 -05:00
|
|
|
"eslint": "^8.5.0",
|
2021-11-22 18:27:36 -05:00
|
|
|
"eslint-plugin-github": "^4.3.5",
|
2021-12-27 19:11:19 -05:00
|
|
|
"eslint-plugin-jest": "^25.3.2",
|
2021-10-01 03:17:49 -04:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-12-20 23:11:49 -05:00
|
|
|
"jest": "^27.4.5",
|
2021-10-01 00:58:11 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-12-24 17:19:22 -05:00
|
|
|
"prettier": "2.5.1",
|
2021-12-24 16:39:31 -05:00
|
|
|
"ts-jest": "^27.1.2",
|
2022-01-01 19:46:47 -05:00
|
|
|
"typescript": "^4.5.4",
|
|
|
|
"semantic-release": "^18.0.1"
|
2021-10-01 00:58:11 -04:00
|
|
|
}
|
|
|
|
}
|