post-api-call/package.json

125 lines
3.7 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",
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",
2023-12-31 11:05:12 +08:00
"@types/jest": "^29.5.11",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@vercel/ncc": "^0.38.1",
"clone-deep": "^4.0.1",
2023-12-31 11:05:12 +08:00
"constructs": "^10.0.0",
"dkershner6-projen-github-actions": "^0.0.24",
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.6.1",
2023-12-31 11:18:19 +08:00
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-sonarjs": "^0.23.0",
2023-12-31 11:05:12 +08:00
"jest": "^29.7.0",
"jest-junit": "^15",
2023-12-31 11:18:19 +08:00
"prettier": "^3.1.1",
"projen": "^0.78.11",
2023-12-31 11:05:12 +08:00
"projen-github-action-typescript": "^0.0.395",
"standard-version": "^9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
2023-12-31 11:05:12 +08:00
"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",
2023-12-31 11:18:19 +08:00
"@actions/github": "^6.0.0",
"axios": "^1.6.5"
2023-12-31 11:18:19 +08:00
},
"pnpm": {},
"keywords": [
"actions",
"node",
"setup"
],
"engines": {
"node": ">= 18.12.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",
"transformIgnorePatterns": [
"node_modules/(?!(@babel/runtime|@buildresonance/global-lib-storefront-shared-components|@buildresonance/global-lib-storefront-next-markdown|@mui*|.*separated-tokens|.*util-gfm.*|bail|ccount|character-entities.*|decode-named-character-reference|direction|escape-string-regexp|github-slugger|hast.*|html-void-elements|is-plain-obj|longest-streak|markdown.*|mdast.*|micromark.*|property-information|rehype.*|remark.*|stringify-entities|strip-markdown|trim-lines|trough|unified|unist.*|vfile.*|web-namespaces|zwitch|@panva/hkdf|jose|swiper|swiper/react|ssr-window|dom7|uuid)/)",
"\\.pnp\\.[^\\/]+$"
],
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",
{
2023-12-31 11:18:19 +08:00
"tsconfig": "tsconfig.json"
2023-12-31 11:05:12 +08:00
}
]
}
},
"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
}