-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.33 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
50
51
{
"name": "azblob-upload-artifact",
"version": "0.0.0",
"private": true,
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "ncc build src/index.ts -o dist",
"build": "tsc -p .",
"watch": "tsc -p . --watch --preverseWatchOutput",
"lint": "eslint --max-warnings 0 ./**/*.ts",
"lint:fix": "eslint --fix ./**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fixpoint/azblob-upload-artifact.git"
},
"keywords": [
"github",
"action",
"azure",
"blob",
"artifact"
],
"author": "Fixpoint, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/fixpoint/azblob-upload-artifact/issues"
},
"homepage": "https://github.com/fixpoint/azblob-upload-artifact#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@azure/storage-blob": "^12.25.0",
"glob": "^11.0.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}