72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "release-action",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"description": "An action which manages a github release",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf lib/*",
|
|
"coverage": "jest --coverage",
|
|
"debug": "yarn clean && yarn install && yarn build && yarn package",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"release": "yarn clean && yarn install --production && yarn build && yarn package",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ncipollo/release-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"jest": {
|
|
"clearMocks": true,
|
|
"collectCoverage": true,
|
|
"coveragePathIgnorePatterns": [
|
|
"src/Globber.ts",
|
|
"src/Releases.ts"
|
|
],
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 95,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
],
|
|
"testRunner": "jest-circus/runner",
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"verbose": true
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.6.0",
|
|
"@actions/github": "^5.0.3",
|
|
"@types/glob": "^7.2.0",
|
|
"glob": "^8.0.3",
|
|
"untildify": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^17.0.38",
|
|
"jest": "^27.5.1",
|
|
"jest-circus": "^27.5.1",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "^4.7.3"
|
|
}
|
|
}
|