{ "name": "rust-audit-check", "version": "1.0.0", "private": false, "description": "Security audit for security vulnerabilities", "main": "lib/main.js", "directories": { "lib": "lib", "test": "__tests__" }, "scripts": { "build": "ncc build src/main.ts --minify", "watch": "ncc build src/main.ts --watch --minify", "test": "jest --passWithNoTests", "format": "prettier --write 'src/**/*.{js,ts,tsx}'", "refresh": "rm -rf ./lib/* && npm run-script build", "lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'" }, "repository": { "type": "git", "url": "git+https://github.com/actions-rs/audit.git" }, "keywords": [ "actions", "rust", "cargo", "audit", "security", "advisory" ], "author": "actions-rs", "license": "MIT", "bugs": { "url": "https://github.com/actions-rs/audit-check/issues" }, "dependencies": { "@actions-rs/core": "0.0.8", "@actions/core": "^1.2.2", "@actions/github": "^2.1.0", "handlebars": "^4.7.2", "npm-check-updates": "^4.0.1" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^2.17.0", "ts-node": "^8.6.2", "@typescript-eslint/parser": "^2.17.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.9.0", "eslint-plugin-prettier": "^3.1.2", "@types/jest": "^24.9.1", "@types/node": "^13.5.0", "@zeit/ncc": "^0.21.0", "jest": "^25.1.0", "jest-circus": "^25.1.0", "ts-jest": "^25.0.0", "typescript": "^3.7.5", "prettier": "^1.19.1" } }