mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-09 06:17:07 +00:00
It turns out that Jest's ESM support still relies on experimental node modules (as of node 18). Switch back to commonjs instead.
126 lines
3.3 KiB
JSON
Generated
126 lines
3.3 KiB
JSON
Generated
{
|
|
"name": "configure-aws-credentials",
|
|
"description": "A GitHub Action to configure AWS credentials",
|
|
"scripts": {
|
|
"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": "node .projenrc.cjs"
|
|
},
|
|
"author": {
|
|
"name": "Amazon.com, Inc. or its affiliates",
|
|
"url": "https://aws.amazon.com",
|
|
"organization": true
|
|
},
|
|
"devDependencies": {
|
|
"@aws-sdk/credential-provider-env": "^3.186.0",
|
|
"@jest/globals": "^29.1.2",
|
|
"@types/jest": "^29.1.2",
|
|
"@types/node": "^14",
|
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
"@typescript-eslint/parser": "^5",
|
|
"@vercel/ncc": "^0.34.0",
|
|
"aws-sdk-client-mock": "^2.0.0",
|
|
"eslint": "^8",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-node": "^0.3.6",
|
|
"eslint-import-resolver-typescript": "^3.5.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.1.2",
|
|
"jest-junit": "^13",
|
|
"json-schema": "^0.4.0",
|
|
"npm-check-updates": "^16",
|
|
"prettier": "^2.7.1",
|
|
"projen": "^0.63.19",
|
|
"projen-github-action-typescript": "^0.0.155",
|
|
"standard-version": "^9",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"@aws-sdk/client-sts": "^3"
|
|
},
|
|
"keywords": [
|
|
"aws",
|
|
"github",
|
|
"github-action"
|
|
],
|
|
"engines": {
|
|
"node": ">= 14.0.0"
|
|
},
|
|
"main": "lib/index.js",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/aws-actions/configure-aws-credentials",
|
|
"version": "0.0.0",
|
|
"bugs": {
|
|
"url": "https://github.com/aws-actions/configure-aws-credentials/issues"
|
|
},
|
|
"jest": {
|
|
"testMatch": [
|
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
|
"<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)",
|
|
"<rootDir>/test/**/*.(test|spec).(js|jsx|ts|tsx)"
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
],
|
|
"preset": "ts-jest",
|
|
"transform": {
|
|
"^.+\\.[tj]sx?$": [
|
|
"ts-jest",
|
|
{
|
|
"useESM": true,
|
|
"tsconfig": "tsconfig.dev.json"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"overrides": {
|
|
"@types/responselike": "1.0.0",
|
|
"got": "12.3.1"
|
|
},
|
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
|
}
|