-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
125 lines (125 loc) · 3.99 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@adobe/helix-run-query",
"version": "3.33.7",
"private": true,
"description": "Helix Run Query",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "nodemon",
"test": "c8 mocha -i -g 'Post-Deploy' --exit",
"test-postdeploy": "mocha -g 'Post-Deploy' --exit",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --no-ci --branches $CI_BRANCH",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"build": "hedy -v",
"deploy": "hedy -v --deploy --test=/_status_check/healthcheck.json",
"deploy-routes": "hedy --no-build -no-hints -l major",
"deploy-ci": "hedy -v --deploy --test=/_status_check/healthcheck.json --pkgVersion=ci$CI_BUILD_NUM -l ci --cleanup-ci=24h",
"prepare": "husky"
},
"mocha": {
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"loader": "esmock",
"require": "test/setup-env.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-run-query.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-run-query/issues"
},
"homepage": "https://github.com/adobe/helix-run-query#readme",
"dependencies": {
"@adobe/fetch": "4.1.9",
"@adobe/helix-shared-body-data": "2.1.7",
"@adobe/helix-shared-utils": "3.0.2",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.3",
"@google-cloud/bigquery": "7.9.1",
"dotenv": "16.4.5",
"fs-extra": "11.2.0",
"googleapis": "144.0.0",
"json-size": "1.0.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-deploy": "12.3.6",
"@adobe/helix-universal": "5.0.6",
"@adobe/helix-universal-devserver": "1.1.67",
"@adobe/semantic-release-coralogix": "1.1.32",
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"@pollyjs/persister-rest": "6.0.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"ajv": "8.17.1",
"c8": "10.1.2",
"eslint": "8.57.1",
"esmock": "2.6.9",
"husky": "9.1.6",
"jsdoc-to-markdown": "9.0.5",
"junit-report-builder": "5.1.1",
"lint-staged": "15.2.10",
"lodash": "4.17.21",
"mocha": "11.0.1",
"mocha-multi-reporters": "1.5.1",
"nodemon": "3.1.7",
"semantic-release": "24.2.0",
"sinon": "19.0.2"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
},
"wsk": {
"namespace": "helix",
"memory": 512,
"nodeVersion": 18,
"target": "aws",
"name": "helix-services/run-query@${version}",
"static": [
"src/queries/dev-urls.sql",
"src/queries/ee-score.sql",
"src/queries/guess-hostname.sql",
"src/queries/revoke-domainkey.sql",
"src/queries/rotate-domainkeys.sql",
"src/queries/rum-404.sql",
"src/queries/rum-bounces.sql",
"src/queries/rum-bundles.sql",
"src/queries/rum-checkpoint-cwv-correlation.sql",
"src/queries/rum-checkpoint-urls.sql",
"src/queries/rum-checkpoints.sql",
"src/queries/rum-content-requests.sql",
"src/queries/rum-dashboard.sql",
"src/queries/rum-experiments.sql",
"src/queries/rum-forms-dashboard.sql",
"src/queries/rum-intervals.sql",
"src/queries/rum-pageviews.sql",
"src/queries/rum-pageviews-pivot.sql",
"src/queries/rum-sources-targets.sql",
"src/queries/rum-sources.sql",
"src/queries/rum-targets.sql",
"src/queries/dash/auth-all-domains.sql",
"src/queries/dash/edge-delivery-live-hints.sql",
"src/queries/dash/domain-list.sql",
"src/queries/dash/update-domain-info.sql",
"src/queries/dash/add-lhs-data.sql"
]
},
"nodemonConfig": {
"exec": "node --inspect ./test/dev/server.js",
"watch": [
".env",
"."
],
"ext": ".js, .cjs, .ejs, .mjs"
}
}