javascript-action/package.json

83 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2019-09-11 05:44:28 +00:00
{
"name": "javascript-action",
2023-09-14 14:36:37 +00:00
"description": "GitHub Actions JavaScript Template",
"version": "0.0.0",
"author": "",
"private": true,
"homepage": "https://github.com/actions/javascript-action#readme",
2019-09-11 05:44:28 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
2023-09-14 14:36:37 +00:00
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
2019-09-11 05:44:28 +00:00
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
2023-09-14 14:36:37 +00:00
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
2024-02-22 16:41:07 +00:00
"ci-test": "npx jest",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
2023-09-14 14:36:37 +00:00
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
2024-02-22 16:41:07 +00:00
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
2023-09-14 14:36:37 +00:00
"package:watch": "npm run package -- --watch",
2024-02-22 16:41:07 +00:00
"test": "npx jest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
2023-09-14 14:36:37 +00:00
},
2019-09-11 05:44:28 +00:00
"license": "MIT",
2023-09-14 14:36:37 +00:00
"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-09-11 05:44:28 +00:00
},
"dependencies": {
2023-09-14 14:36:37 +00:00
"@actions/core": "^1.10.1"
2019-09-11 05:44:28 +00:00
},
"devDependencies": {
"@babel/core": "^7.24.4",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core), [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) and [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env). Updates `@babel/core` from 7.24.0 to 7.24.3 - [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.24.3/packages/babel-core) Updates `@babel/eslint-parser` from 7.23.10 to 7.24.1 - [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.24.1/eslint/babel-eslint-parser) Updates `@babel/preset-env` from 7.24.0 to 7.24.3 - [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.24.3/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: "@babel/eslint-parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-25 09:45:13 +00:00
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@vercel/ncc": "^0.38.1",
2023-09-14 14:36:37 +00:00
"babel-preset-jest": "^29.6.3",
"eslint": "^8.57.0",
Bump the npm-development group with 3 updates Bumps the npm-development group with 3 updates: [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core), [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) and [eslint-plugin-github](https://github.com/github/eslint-plugin-github). Updates `@babel/core` from 7.23.9 to 7.24.0 - [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.24.0/packages/babel-core) Updates `@babel/preset-env` from 7.23.9 to 7.24.0 - [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.24.0/packages/babel-preset-env) Updates `eslint-plugin-github` from 4.10.1 to 4.10.2 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.10.1...v4.10.2) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-04 09:23:28 +00:00
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.3.0",
2023-09-14 14:36:37 +00:00
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.2.5"
2019-09-11 05:44:28 +00:00
}
}