generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
65
66
67
{
"name": "action-azure-upload-blob",
"version": "3.3.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.26.0",
"@types/glob": "^8.1.0",
"@types/mime-types": "^2.1.4",
"glob": "^11.0.0",
"mime-types": "^2.1.35",
"npm": "^11.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.17.0",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"node-notifier": "^10.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tmpl": "^1.0.5",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}