mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-24 20:16:08 +02:00
70 lines
2.0 KiB
JSON
70 lines
2.0 KiB
JSON
{
|
||
"name": "nextcloud-artifacts-action",
|
||
"version": "1.0.0",
|
||
"description": "",
|
||
"main": "lib/nextcloud-artifacts.js",
|
||
"scripts": {
|
||
"build": "npx tsc",
|
||
"format": "prettier --write **/*.ts",
|
||
"format-check": "prettier --check **/*.ts",
|
||
"lint": "eslint src/**/*.ts",
|
||
"package": "npx ncc build --source-map --license licenses.txt",
|
||
"test": "jest --ci"
|
||
},
|
||
"repository": {
|
||
"type": "git",
|
||
"url": "git+https://github.com/trympet/nextcloud-artifacts-action.git"
|
||
},
|
||
"keywords": [],
|
||
"author": "Trym Lund Flogard <trym@flogard.no>",
|
||
"license": "GPL-2.0-only",
|
||
"bugs": {
|
||
"url": "https://github.com/trympet/nextcloud-artifacts-action/issues"
|
||
},
|
||
"homepage": "https://github.com/trympet/nextcloud-artifacts-action#readme",
|
||
"dependencies": {
|
||
"@actions/core": "^1.3.0",
|
||
"@actions/exec": "^1.0.4",
|
||
"@actions/github": "^5.0.0",
|
||
"@actions/glob": "^0.1.2",
|
||
"archiver": "^5.3.0",
|
||
"btoa": "^1.2.1",
|
||
"node-fetch": "^2.6.1",
|
||
"uuid": "^8.3.2",
|
||
"webdav": "^4.6.0"
|
||
},
|
||
"devDependencies": {
|
||
"@octokit/types": "^6.16.2",
|
||
"@octokit/webhooks": "^9.6.3",
|
||
"@types/archiver": "^5.1.0",
|
||
"@types/btoa": "^1.2.3",
|
||
"@types/jest": "^26.0.23",
|
||
"@types/node": "^15.6.2",
|
||
"@types/node-fetch": "^2.5.10",
|
||
"@types/uuid": "^8.3.0",
|
||
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
||
"@typescript-eslint/parser": "^4.16.1",
|
||
"dotenv": "^10.0.0",
|
||
"eslint": "^7.21.0",
|
||
"eslint-plugin-github": "^4.1.3",
|
||
"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",
|
||
"typescript": "^4.3.2"
|
||
},
|
||
"jest-junit": {
|
||
"suiteName": "jest tests",
|
||
"outputDirectory": "__tests__/__results__",
|
||
"outputName": "jest-junit.xml",
|
||
"ancestorSeparator": " › ",
|
||
"uniqueOutputName": "false",
|
||
"suiteNameTemplate": "{filepath}",
|
||
"classNameTemplate": "{classname}",
|
||
"titleTemplate": "{title}"
|
||
}
|
||
}
|