-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
80
81
82
83
84
85
86
{
"name": "@adobe/helix-deploy",
"version": "12.4.10",
"description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
"license": "Apache-2.0",
"homepage": "https://github.com/adobe/helix-deploy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/helix-deploy.git"
},
"bugs": {
"url": "https://github.com/adobe/helix-deploy/issues"
},
"keywords": [
"helix",
"serverless"
],
"main": "index.js",
"type": "module",
"bin": {
"hedy": "src/index.js"
},
"scripts": {
"lint": "eslint .",
"test": "c8 mocha -i -g Integration",
"integration-ci": "c8 mocha -g Integration",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky"
},
"mocha": {
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"require": "test/setup-env.js"
},
"peerDependencies": {
"@adobe/helix-universal": ">=4.1.1"
},
"dependencies": {
"@adobe/fetch": "4.1.11",
"@adobe/helix-shared-process-queue": "3.0.4",
"@aws-sdk/client-apigatewayv2": "3.734.0",
"@aws-sdk/client-lambda": "3.734.0",
"@aws-sdk/client-s3": "3.735.0",
"@aws-sdk/client-secrets-manager": "3.734.0",
"@aws-sdk/client-ssm": "3.735.0",
"@aws-sdk/client-sts": "3.734.0",
"@google-cloud/functions": "3.6.0",
"@google-cloud/secret-manager": "5.6.0",
"@google-cloud/storage": "7.15.0",
"archiver": "7.0.1",
"chalk-template": "1.1.0",
"dotenv": "16.4.7",
"esbuild": "0.24.2",
"escalade": "3.2.0",
"fs-extra": "11.3.0",
"isomorphic-git": "1.29.0",
"openwhisk": "3.21.8",
"semver": "7.6.3",
"webpack": "5.97.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.5",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"mocha": "11.1.0",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"semantic-release": "24.2.1",
"yauzl": "3.2.0"
},
"engines": {
"node": ">=18.0"
},
"lint-staged": {
"*.js": "eslint"
}
}