upload-release/package.json
2020-07-02 07:03:27 +02:00

50 lines
1.2 KiB
JSON

{
"name": "upload-release-action",
"version": "1.0.2",
"private": true,
"description": "Upload files to a GitHub release",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svestaro/upload-release-action.git"
},
"keywords": [
"actions",
"upload",
"release",
"assets",
"asset"
],
"author": "Sven-Hendrik Haase",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^1.1.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"@typescript-eslint/parser": "^3.5.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.3.1",
"eslint-plugin-github": "^4.0.1",
"eslint-plugin-jest": "^23.17.1",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.14.0",
"prettier": "^2.0.5",
"ts-jest": "^24.3.0",
"typescript": "^3.9.6"
}
}