-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sharepoint-download-action",
"version": "1.0.0",
"description": "GitHub Action for downloading a single item from Microsoft SharePoint",
"main": "dist/index.js",
"scripts": {
"lint:check": "eslint -f compact ./src/",
"lint:fix": "eslint -f compact ./src/ --fix",
"style": "prettier -w ./src/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MedicalVR/sharepoint-download-action.git"
},
"keywords": [
"github",
"action",
"sharepoint",
"microsoft",
"azure",
"download"
],
"author": "MedicalVR BV <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MedicalVR/sharepoint-download-action/issues"
},
"homepage": "https://github.com/MedicalVR/sharepoint-download-action#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-compact": "^8.40.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@azure/identity": "^4.5.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"isomorphic-fetch": "^3.0.0"
}
}