Files
rust-audit-check/package.json
T

59 lines
1.6 KiB
JSON

{
"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",
"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.7",
"@actions/core": "^1.1.1",
"@actions/github": "^1.1.0",
"handlebars": "^4.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.1",
"ts-node": "^8.4.1",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.5",
"@zeit/ncc": "^0.20.5",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4",
"prettier": "^1.19.1"
}
}