-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.12 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.12 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "yc-actions-yc-obj-storage-upload",
"version": "3.0.1",
"description": "GitHub Action to upload files to Yandex Cloud Object Storage.",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "jest",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "GITHUB_WORKSPACE=__tests__ jest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package",
"git-tag": "git tag v`cat package.json | jq -r '.version' | awk -F. '{print $1}'` -f && git tag v`cat package.json | jq -r '.version'` -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yc-actions/yc-sls-function.git"
},
"keywords": [
"actions",
"yandex cloud",
"S3",
"object storage",
"upload"
],
"author": "Nikolay Matrosov",
"license": "MIT",
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**",
"!./src/index.ts"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^9.0.0",
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/lib-storage": "^3.980.0",
"@grpc/grpc-js": "^1.14.3",
"@smithy/protocol-http": "^5.3.8",
"@yandex-cloud/nodejs-sdk": "^2.9.0",
"axios": "1.13.4",
"glob": "^13.0.1",
"mime-types": "^3.0.2",
"minimatch": "10.1.1",
"minimist": ">=1.2.8",
"path-scurry": "^2.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.11",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/mustache": "^4.2.6",
"@types/node": "25.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vercel/ncc": "^0.38.4",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-jsonc": "^2.21.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"make-coverage-badge": "^1.2.0",
"prettier": "3.8.1",
"prettier-eslint": "^16.4.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24"
}
}