generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "yc-object-storage-upload-action",
"version": "1.3.0",
"description": "Deploy static website to Yandex Object Storage",
"main": "lib/main.js",
"type": "module",
"packageManager": "pnpm@9.12.3",
"scripts": {
"bundle": "pnpm run format:write && pnpm run package",
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
"coverage": "pnpx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "pnpx prettier --write .",
"format:check": "pnpx prettier --check .",
"lint": "pnpx eslint .",
"local-action": "pnpx @github/local-action . src/main.ts .env",
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "pnpm run package -- --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 pnpx jest",
"all": "pnpm run format:write && pnpm run lint && pnpm run test && pnpm run coverage && pnpm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrMeison/yc-object-storage-action.git"
},
"keywords": [
"actions",
"node",
"yandex",
"yandex.cloud"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": "20.9.0"
},
"author": "Konstantin Mamaev",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@aws-sdk/client-s3": "3.758.0",
"@aws-sdk/middleware-flexible-checksums": "3.758.0",
"fast-glob": "3.3.3",
"mime": "4.0.6"
},
"devDependencies": {
"@eslint/compat": "1.2.6",
"@github/local-action": "2.6.3",
"@jest/globals": "29.7.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.19",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"aws-sdk-client-mock": "4.1.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.8.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "16.0.0",
"jest": "29.7.0",
"make-coverage-badge": "1.2.0",
"prettier": "3.5.2",
"prettier-eslint": "16.3.0",
"rollup": "4.34.8",
"ts-jest": "29.2.6",
"ts-jest-resolver": "2.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}