generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "action-azure-upload-blob",
"version": "3.2.0",
"private": false,
"description": "GitHub Acton that uploads file to Azure Storage blob container.",
"main": "lib/main.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --coverage",
"pre-commit": "npm run format && npm run lint && npm run rebuild && npm run package",
"all": "npm install && npm run format && npm run lint && npm run rebuild && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LanceMcCarthy/Action-AzureBlobUpload.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Lance McCarthy",
"license": "MIT",
"bugs": {
"url": "https://github.com/LanceMcCarthy/Action-AzureBlobUpload/Issues"
},
"homepage": "https://github.com/LanceMcCarthy/Action-AzureBlobUpload#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@azure/storage-blob": "^12.25.0",
"@types/glob": "^8.1.0",
"@types/mime-types": "^2.1.4",
"glob": "^11.0.0",
"mime-types": "^2.1.35",
"npm": "^10.9.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"node-notifier": "^10.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tmpl": "^1.0.5",
"ts-jest": "^28.0.8",
"typescript": "^5.6.3"
}
}