2021-05-22 05:53:33 +08:00
|
|
|
{
|
2021-05-22 06:17:43 +08:00
|
|
|
"name": "post-api-call-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",
|
|
|
|
"clobber": "npx projen clobber",
|
|
|
|
"compile": "npx projen compile",
|
|
|
|
"default": "npx projen default",
|
|
|
|
"eject": "npx projen eject",
|
|
|
|
"eslint": "npx projen eslint",
|
|
|
|
"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:watch": "npx projen test:watch",
|
|
|
|
"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/jest": "^29.5.11",
|
|
|
|
"@types/node": "^18",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6",
|
|
|
|
"@typescript-eslint/parser": "^6",
|
|
|
|
"@vercel/ncc": "^0.38.1",
|
|
|
|
"constructs": "^10.0.0",
|
|
|
|
"eslint": "^8",
|
|
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
|
|
"eslint-plugin-import": "^2.29.1",
|
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-junit": "^15",
|
|
|
|
"projen": "^0.78.5",
|
|
|
|
"projen-github-action-typescript": "^0.0.395",
|
|
|
|
"standard-version": "^9",
|
|
|
|
"ts-jest": "^29.1.1",
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"typescript": "^5.3.3"
|
2021-05-22 05:53:33 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-12-31 11:05:12 +08:00
|
|
|
"@actions/core": "^1.10.1",
|
|
|
|
"@actions/github": "^6.0.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": {
|
|
|
|
"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.dev.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
|
2021-05-22 05:53:33 +08:00
|
|
|
}
|