{ "name": "load-secrets-action", "version": "1.2.0", "description": "Load Secrets from 1Password", "type": "module", "main": "dist/index.js", "directories": { "test": "tests" }, "scripts": { "build": "ncc build ./src/index.ts", "format": "prettier --ignore-path ./config/.prettierignore", "format:check": "npm run format -- --check ./", "format:write": "npm run format -- --write ./", "lint": "eslint ./", "lint:fix": "npm run lint -- --fix", "prepare": "husky install ./config/.husky", "test": "jest --config=./config/jest.config.js", "test:clearcache": "jest --clearCache", "test:coverage": "npm run test -- --coverage", "test:watch": "npm run test -- --watch", "typecheck": "tsc", "validate": "npm run format:check && npm run lint && npm run test:coverage && npm run typecheck && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/1Password/load-secrets-action.git" }, "keywords": [ "actions", "1password", "load secrets", "connect" ], "author": "1Password", "license": "MIT", "bugs": { "url": "https://github.com/1Password/load-secrets-action/issues" }, "homepage": "https://github.com/1Password/load-secrets-action#readme", "dependencies": { "@actions/core": "^1.10.0", "@actions/exec": "^1.1.1" }, "devDependencies": { "@1password/front-end-style": "^6.0.1", "@types/jest": "^29.5.0", "@types/node": "^18.15.10", "@vercel/ncc": "^0.36.1", "husky": "^8.0.3", "jest": "^29.5.0", "lint-staged": "^13.2.0", "ts-jest": "^29.0.5", "typescript": "^4.9.5" }, "eslintConfig": { "extends": "./node_modules/@1password/front-end-style/eslintrc.yml", "ignorePatterns": [ "coverage/" ], "parserOptions": { "project": "./tsconfig.json" } }, "prettier": "./node_modules/@1password/front-end-style/prettierrc.json" }