-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.14 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@adobe/helix-rum-bundler",
"version": "1.10.23",
"private": true,
"description": "Helix RUM bundler",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "nodemon",
"test": "c8 mocha -i -g 'Post-Deploy'",
"test-postdeploy": "mocha -g 'Post-Deploy'",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"commit": "git-cz",
"build": "hedy -v --test-bundle",
"deploy": "hedy -v --deploy --test",
"deploy-routes": "hedy --no-build --no-hints -l major",
"deploy-ci": "hedy -v --deploy --test --pkgVersion=ci$CI_BUILD_NUM -l ci --cleanup-ci 24h",
"prepare": "husky",
"import:bq": "node ./test/dev/tools/import-bundles.js"
},
"wsk": {
"nodeVersion": 20,
"target": "aws",
"name": "helix3/rum-bundler@${version}",
"testUrl": "/_status_check/healthcheck.json",
"awsRole!important": "arn:aws:iam::118435662149:role/helix-service-role-rum-bundler",
"awsRegion": "us-east-1",
"memory": 10240,
"fastlyServiceId!important": "",
"awsAttachAuthorizer": "helix-token-authorizer_v2",
"params-file": "./params.json",
"timeout": 600000,
"dev": {
"params-file": "./params.json"
}
},
"mocha": {
"spec": "test/**/*.test.js",
"require": "test/setup-env.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-rum-bundler"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-rum-bundler/issues"
},
"homepage": "https://github.com/adobe/helix-rum-bundler#readme",
"dependencies": {
"@adobe/fetch": "4.1.11",
"@adobe/helix-shared-body-data": "2.1.9",
"@adobe/helix-shared-process-queue": "3.0.4",
"@adobe/helix-shared-secrets": "2.2.10",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.5",
"@aws-sdk/client-s3": "3.735.0",
"@aws-sdk/node-http-handler": "3.374.0",
"mime": "4.0.6"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-deploy": "12.4.10",
"@adobe/helix-universal": "5.0.8",
"@adobe/helix-universal-devserver": "1.1.81",
"@adobe/semantic-release-coralogix": "1.1.34",
"@google-cloud/bigquery": "7.9.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/mocha": "10.0.10",
"c8": "10.1.3",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"esmock": "2.7.0",
"fs-extra": "11.3.0",
"googleapis": "144.0.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "15.4.3",
"mocha": "11.1.0",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"nodemon": "3.1.9",
"semantic-release": "24.2.1",
"typescript": "5.7.3"
},
"lint-staged": {
"*.js": "eslint"
},
"nodemonConfig": {
"exec": "node --inspect ./test/dev/server.js",
"watch": [
".env",
"."
],
"ext": ".js, .cjs, .ejs, .css"
}
}