49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "action-upload-webdav",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Github Action for uploading files to a webdav server",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts",
|
|
"build": "tsc",
|
|
"package-pre": "ncc build lib/ping.js -o dist/pre",
|
|
"package": "ncc build --source-map --license LICENSE lib/main.js",
|
|
"dist": "npm run build && npm run package-pre && npm run package",
|
|
"format": "prettier --write src/*.ts src/**/*.ts src/**/**/*.ts",
|
|
"test": "jest",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bxb100/action-upload-webdav"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "bxb100",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "1.10.0",
|
|
"@actions/github": "5.1.1",
|
|
"@actions/glob": "0.3.0",
|
|
"webdav": "4.11.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "29.2.6",
|
|
"@types/node": "16.18.25",
|
|
"@typescript-eslint/parser": "5.48.2",
|
|
"@vercel/ncc": "0.36.0",
|
|
"eslint": "8.32.0",
|
|
"eslint-plugin-github": "4.6.0",
|
|
"husky": "8.0.3",
|
|
"jest": "29.3.1",
|
|
"jest-circus": "29.3.1",
|
|
"prettier": "2.8.3",
|
|
"ts-jest": "29.0.5",
|
|
"typescript": "4.9.4"
|
|
}
|
|
}
|