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": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@babel/eslint-parser": "^7.23.3",
2023-09-15 14:56:32 +00:00
"@babel/preset-env": "^7.22.15",
"@vercel/ncc": "^0.38.0",
"babel-preset-jest": "^29.6.3",
"eslint": "^8.53.0",
2023-09-15 14:56:32 +00:00
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.6.0",
2023-09-15 14:56:32 +00:00
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.1.0"
2019-08-07 03:54:32 +00:00
}
2019-08-03 21:44:52 +00:00
}