/
githubmirror
/
slo-tests
Обзор
Документация
Войти
/
githubmirror
/
slo-tests
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
package.json
43 строки
1 KB
Aleksey Myasnikov
fix
04 окт 2024, 08:30
04 окт 2024, 08:30
839e236
Код
Авторство
О чём код?
{ "name": "slo-tests", "version": "1.1.0", "private": true, "description": "TypeScript action for performing SLO tests for YDB in k8s cluster", "main": "lib/main.js", "scripts": { "manifests": "ls k8s/ci/*.yaml | sed -e 's/k8s\\/ci\\///g; s/\\.yaml//g' | xargs -I NAME npx fs-to-json --input k8s/ci/NAME.yaml --output src/manifests/NAME.json", "build": "npm run manifests && tsc", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "package": "npm run build && ncc build -o dist/main --minify --no-cache --license licenses.txt lib/main.js && ncc build -o dist/post --minify --no-cache --license licenses.txt lib/post.js", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/ydb-platform/slo-tests.git" }, "keywords": ["actions", "node", "setup"], "author": "", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", "@actions/github": "^6.0.0", "@octokit/rest": "^21.0.2", "fs-to-json": "^0.2.0" }, "devDependencies": { "@types/node": "^22.7.4", "@typescript-eslint/parser": "^5.62.0", "@vercel/ncc": "^0.38.1", "eslint": "^8.39.0", "eslint-plugin-github": "^5.0.1", "eslint-plugin-jest": "^28.8.3", "jest": "^29.7.0", "js-yaml": "^4.1.0", "prettier": "^3.3.3", "ts-jest": "^29.2.5", "typescript": "^5.6.2" } }