2021-05-22 05:53:33 +08:00
|
|
|
{
|
2021-05-22 06:17:43 +08:00
|
|
|
"name": "post-api-call-action",
|
2022-08-06 22:38:37 +08:00
|
|
|
"version": "1.1.0",
|
2021-05-22 05:53:33 +08:00
|
|
|
"private": true,
|
2021-05-22 06:17:43 +08:00
|
|
|
"description": "Send a POST request action",
|
2021-05-22 05:53:33 +08:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"pack": "ncc build",
|
2021-05-22 06:17:43 +08:00
|
|
|
"test": "jest --passWithNoTests",
|
2021-05-22 05:53:33 +08:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-05-22 06:17:43 +08:00
|
|
|
"url": "git+https://github.com/dkershner6/post-api-call-action.git"
|
2021-05-22 05:53:33 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
2021-05-22 06:17:43 +08:00
|
|
|
"author": "Derek Kershner",
|
2021-05-22 05:53:33 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-05-22 06:17:43 +08:00
|
|
|
"@actions/core": "^1.3.0",
|
|
|
|
"axios": "^0.21.1"
|
2021-05-22 05:53:33 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-22 06:17:43 +08:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/node": "^15.6.0",
|
|
|
|
"@typescript-eslint/parser": "^4.24.0",
|
|
|
|
"@vercel/ncc": "^0.28.5",
|
|
|
|
"eslint": "^7.26.0",
|
|
|
|
"eslint-plugin-github": "^4.1.3",
|
|
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
"jest-circus": "^26.6.3",
|
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"prettier": "^2.3.0",
|
|
|
|
"ts-jest": "^26.5.6",
|
|
|
|
"typescript": "^4.2.4"
|
2021-05-22 05:53:33 +08:00
|
|
|
}
|
|
|
|
}
|