hello-world-javascript-action/package.json

83 lines
2.2 KiB
JSON
Raw Normal View History

2019-08-03 21:44:52 +00:00
{
2019-09-06 22:17:38 +00:00
"name": "hello-world-javascript-action",
2023-09-15 14:56:32 +00:00
"description": "This action prints `Hello, World!` or `Hello, <who-to-greet>!` to the log",
2019-08-03 21:44:52 +00:00
"version": "1.0.0",
2023-09-15 14:56:32 +00:00
"author": "",
"private": true,
"homepage": "https://github.com/actions/hello-world-javascript-action#readme",
2019-09-06 22:17:38 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/actions/hello-world-javascript-action.git"
},
"bugs": {
"url": "https://github.com/actions/hello-world-javascript-action/issues"
},
2023-09-15 14:56:32 +00:00
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "jest",
"format:write": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/index.js --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
},
"license": "MIT",
"eslintConfig": {
"extends": "./.github/linters/.eslintrc.yml"
},
"jest": {
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
2019-08-07 03:54:32 +00:00
"dependencies": {
2023-09-15 14:56:32 +00:00
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
2023-09-15 14:56:32 +00:00
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env), [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) and [prettier](https://github.com/prettier/prettier). Updates `@babel/preset-env` from 7.23.7 to 7.23.8 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-preset-env) Updates `eslint-plugin-jest` from 27.6.1 to 27.6.3 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.1...v27.6.3) Updates `prettier` from 3.1.1 to 3.2.2 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.1...3.2.2) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2024-01-15 15:03:34 +00:00
"@babel/preset-env": "^7.23.8",
"@vercel/ncc": "^0.38.1",
2023-09-15 14:56:32 +00:00
"babel-preset-jest": "^29.6.3",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env), [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) and [prettier](https://github.com/prettier/prettier). Updates `@babel/preset-env` from 7.23.7 to 7.23.8 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-preset-env) Updates `eslint-plugin-jest` from 27.6.1 to 27.6.3 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.1...v27.6.3) Updates `prettier` from 3.1.1 to 3.2.2 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.1...3.2.2) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2024-01-15 15:03:34 +00:00
"eslint-plugin-jest": "^27.6.3",
2023-09-15 14:56:32 +00:00
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env), [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) and [prettier](https://github.com/prettier/prettier). Updates `@babel/preset-env` from 7.23.7 to 7.23.8 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-preset-env) Updates `eslint-plugin-jest` from 27.6.1 to 27.6.3 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.1...v27.6.3) Updates `prettier` from 3.1.1 to 3.2.2 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.1...3.2.2) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2024-01-15 15:03:34 +00:00
"prettier": "^3.2.2"
2019-08-07 03:54:32 +00:00
}
2019-08-03 21:44:52 +00:00
}