update package json

This commit is contained in:
Trym Lund Flogard 2021-06-05 11:45:53 +02:00
parent ea9ac9cb73
commit f07d8c68b0

View File

@ -4,22 +4,26 @@
"description": "", "description": "",
"main": "lib/nextcloud-artifacts.js", "main": "lib/nextcloud-artifacts.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "build": "npx tsc",
"build": "npx tsc && npx @vercel/ncc build" "format": "npx prettier --write **/*.ts",
"format-check": "npx prettier --check **/*.ts",
"lint": "npx eslint src/**/*.ts",
"package": "npx ncc build --source-map --license licenses.txt"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/trympet/nextcloud-artifacts-action.git" "url": "git+https://github.com/trympet/nextcloud-artifacts-action.git"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "Trym Lund Flogard <trym@flogard.no>",
"license": "ISC", "license": "GPL-2.0-only",
"bugs": { "bugs": {
"url": "https://github.com/trympet/nextcloud-artifacts-action/issues" "url": "https://github.com/trympet/nextcloud-artifacts-action/issues"
}, },
"homepage": "https://github.com/trympet/nextcloud-artifacts-action#readme", "homepage": "https://github.com/trympet/nextcloud-artifacts-action#readme",
"dependencies": { "dependencies": {
"@actions/core": "^1.3.0", "@actions/core": "^1.3.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0", "@actions/github": "^5.0.0",
"@actions/glob": "^0.1.2", "@actions/glob": "^0.1.2",
"archiver": "^5.3.0", "archiver": "^5.3.0",
@ -29,11 +33,24 @@
"webdav": "^4.6.0" "webdav": "^4.6.0"
}, },
"devDependencies": { "devDependencies": {
"@octokit/types": "^6.16.2",
"@octokit/webhooks": "^9.6.3",
"@types/archiver": "^5.1.0", "@types/archiver": "^5.1.0",
"@types/btoa": "^1.2.3", "@types/btoa": "^1.2.3",
"@types/node": "^15.6.2", "@types/node": "^15.6.2",
"@types/node-fetch": "^2.5.10", "@types/node-fetch": "^2.5.10",
"@types/uuid": "^8.3.0", "@types/uuid": "^8.3.0",
"typescript": "^4.3.2" "@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"typescript": "^4.3.2",
"eslint": "^7.21.0",
"eslint-plugin-github": "^4.1.2",
"eslint-plugin-jest": "^24.1.7",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-junit": "^12.0.0",
"js-yaml": "^4.0.0",
"prettier": "2.2.1",
"ts-jest": "^26.5.3"
} }
} }