-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.15 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
{
"name": "yc-actions-yc-sls-function",
"version": "4.1.1",
"description": "GitHub Action to deploy Serverless Function to Yandex Cloud.",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "GITHUB_WORKSPACE=__tests__ jest --verbose",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"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",
"serverless",
"deploy"
],
"author": "Nikolay Matrosov",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.2",
"@actions/github": "^7.0.0",
"@grpc/grpc-js": "^1.14.3",
"@yandex-cloud/nodejs-sdk": "^3.0.0-beta.1",
"archiver": "^7.0.1",
"axios": "1.16.1",
"glob": "^13.0.6",
"long": "5.3.2",
"minimatch": "10.1.1",
"minimist": ">=1.2.8",
"path-scurry": "^2.0.2",
"stream-buffers": "^3.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/archiver": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/mustache": "^4.2.6",
"@types/node": "^25.5.0",
"@types/stream-buffers": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.3",
"@vercel/ncc": "^0.38.4",
"dotenv": "^17.4.2",
"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.15.2",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"prettier": "3.7.4",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
}
}