validate-yaml/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2021-10-01 00:58:11 -04:00
{
"name": "validate-yaml",
2021-10-01 00:58:11 -04:00
"version": "0.0.0",
"private": true,
"description": "Validate YAML against a schema using github actions",
"main": "lib/index.js",
2021-10-01 00:58:11 -04:00
"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"
2021-10-01 00:58:11 -04:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/brittonhayes/wails-build-action.git"
2021-10-01 00:58:11 -04:00
},
"keywords": [
"actions",
"node",
"go",
"wails"
2021-10-01 00:58:11 -04:00
],
"author": "Britton Hayes",
2021-10-01 00:58:11 -04:00
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"yaml-validator": "^3.0.1"
2021-10-01 00:58:11 -04:00
},
"devDependencies": {
"@types/node": "^16.3.3",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
2021-10-01 00:58:11 -04:00
"eslint": "^7.31.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
2021-10-01 00:58:11 -04:00
"jest": "^27.0.6",
"js-yaml": "^4.1.0",
"prettier": "2.4.1",
2021-10-01 00:58:11 -04:00
"ts-jest": "^27.0.3",
"typescript": "^4.1.3"
}
}