post-api-call/package.json

125 lines
3.2 KiB
JSON
Raw Normal View History

2021-05-22 05:53:33 +08:00
{
2021-05-22 06:17:43 +08:00
"name": "post-api-call-action",
2023-12-31 11:18:19 +08:00
"description": "Send a POST request action",
2021-05-22 05:53:33 +08:00
"scripts": {
2023-12-31 11:05:12 +08:00
"build": "npx projen build",
"bump": "npx projen bump",
"ci": "npx projen ci",
"clean-compile": "npx projen clean-compile",
2023-12-31 11:05:12 +08:00
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
2023-12-31 11:18:19 +08:00
"docgen": "npx projen docgen",
2023-12-31 11:05:12 +08:00
"eject": "npx projen eject",
"eslint": "npx projen eslint",
"i": "npx projen i",
2023-12-31 11:18:19 +08:00
"lint": "npx projen lint",
2023-12-31 11:05:12 +08:00
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-compile": "npx projen pre-compile",
"release": "npx projen release",
"test": "npx projen test",
"test-unit": "npx projen test-unit",
2023-12-31 11:05:12 +08:00
"test:watch": "npx projen test:watch",
2023-12-31 11:18:19 +08:00
"type-check": "npx projen type-check",
2023-12-31 11:05:12 +08:00
"unbump": "npx projen unbump",
"upgrade": "npx projen upgrade",
"watch": "npx projen watch",
"projen": "npx projen"
2021-05-22 05:53:33 +08:00
},
2023-12-31 11:05:12 +08:00
"devDependencies": {
"@types/clone-deep": "^4.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20",
2023-12-31 11:05:12 +08:00
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@vercel/ncc": "^0.38.1",
"clone-deep": "^4.0.1",
"constructs": "10.3.0",
"dkershner6-projen-github-actions": "^0.0.76",
2023-12-31 11:05:12 +08:00
"eslint": "^8",
2023-12-31 11:18:19 +08:00
"eslint-config-prettier": "^9.1.0",
2023-12-31 11:05:12 +08:00
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.25.1",
2023-12-31 11:05:12 +08:00
"jest": "^29.7.0",
"jest-junit": "^15",
"prettier": "^3.3.2",
"projen": "0.82.5",
"projen-github-action-typescript": "^0.0.397",
2023-12-31 11:05:12 +08:00
"standard-version": "^9",
"ts-jest": "^29.1.5",
2023-12-31 11:05:12 +08:00
"ts-node": "^10.9.2",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
2021-05-22 05:53:33 +08:00
},
"dependencies": {
2023-12-31 11:05:12 +08:00
"@actions/core": "^1.10.1",
2023-12-31 11:18:19 +08:00
"@actions/github": "^6.0.0",
"axios": "^1.7.2"
2023-12-31 11:18:19 +08:00
},
"pnpm": {},
"keywords": [
"actions",
"node",
"setup"
],
"engines": {
"node": ">= 20.10.0 <= 20.10.0"
2021-05-22 05:53:33 +08:00
},
2023-12-31 11:05:12 +08:00
"main": "lib/index.js",
"license": "Apache-2.0",
"version": "0.0.0",
"jest": {
2023-12-31 11:18:19 +08:00
"testEnvironment": "node",
"testTimeout": 15000,
2023-12-31 11:05:12 +08:00
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"transform": {
"^.+\\.[t]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json",
"isolatedModules": true
2023-12-31 11:05:12 +08:00
}
]
}
},
"types": "lib/index.d.ts",
"sideEffects": false,
2023-12-31 11:05:12 +08:00
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
2021-05-22 05:53:33 +08:00
}