Files
npm-audit-action/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2019-12-08 19:17:13 +09:00
{
2019-12-08 22:10:35 +09:00
"name": "npm-audit-action",
2019-12-08 19:17:13 +09:00
"version": "0.0.0",
"private": true,
2019-12-08 22:10:35 +09:00
"description": "GitHub Action to run `npm audit`",
2019-12-08 19:17:13 +09:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
2019-12-08 22:10:35 +09:00
"url": "git+https://github.com/oke-py/npm-audit-action"
2019-12-08 19:17:13 +09:00
},
"keywords": [
"actions",
"node",
2019-12-08 22:10:35 +09:00
"security",
"vulnerability"
2019-12-08 19:17:13 +09:00
],
2019-12-08 22:10:35 +09:00
"author": "Naoki Oketani <okepy.naoki@gmail.com>",
2019-12-08 19:17:13 +09:00
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
}
}