chore: projen eject

This commit is contained in:
Tom Keller
2022-10-27 16:54:59 -07:00
parent 19a173d3ee
commit 4d17522ddb
21 changed files with 4744 additions and 4089 deletions
+5 -68
View File
@@ -2,22 +2,10 @@
"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",
"pre-compile": "npx projen pre-compile",
"release": "npx projen release",
"test": "npx projen test",
"test:watch": "npx projen test:watch",
"unbump": "npx projen unbump",
"watch": "npx projen watch",
"projen": "npx projen"
"build": "tsc",
"lint": "eslint .",
"package": "ncc build --license ../THIRD-PARTY -o dist",
"test": "npm run lint && jest --verbose"
},
"author": {
"name": "Amazon.com, Inc. or its affiliates",
@@ -44,7 +32,6 @@
"jest-junit": "^13",
"json-schema": "^0.4.0",
"prettier": "^2.7.1",
"projen": "^0.63.19",
"projen-github-action-typescript": "^0.0.155",
"standard-version": "^9",
"ts-jest": "^29.0.3",
@@ -52,7 +39,6 @@
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@aws-sdk/client-sts": "^3"
},
"keywords": [
@@ -70,55 +56,6 @@
"bugs": {
"url": "https://github.com/aws-actions/configure-aws-credentials/issues"
},
"jest": {
"transform": {
"^.+\\.m?[tj]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.dev.json"
}
]
},
"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/presets/default-legacy"
},
"types": "build/index.d.ts",
"overrides": {
"@types/responselike": "1.0.0",
"got": "12.3.1"
},
"private": true,
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
"private": true
}