41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "information",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"bundle": "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/action.js",
|
|
"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"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/github": "^6.0.0",
|
|
"semver-parser": "^4.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.5",
|
|
"@babel/eslint-parser": "^7.23.3",
|
|
"@babel/preset-env": "^7.23.5",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"babel-preset-jest": "^29.6.3",
|
|
"eslint": "^8.54.0",
|
|
"eslint-plugin-github": "^4.10.1",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"jest": "^29.7.0",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"prettier": "^3.1.0"
|
|
}
|
|
}
|