forked from adobe/helix-run-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.58 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
{
"name": "@adobe/helix-run-query",
"version": "2.42.14",
"private": true,
"description": "Helix Run Query",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha -i -g 'Post-Deploy' --exit",
"test-postdeploy": "mocha -g 'Post-Deploy' --exit",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"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$CIRCLE_BUILD_NUM -l ci --cleanup-ci=24h",
"prepare": "npx husky install"
},
"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/fastly-native-promises": "3.0.3",
"@adobe/fetch": "4.0.10",
"@adobe/helix-shared-body-data": "2.0.1",
"@adobe/helix-shared-utils": "3.0.0",
"@adobe/helix-shared-wrap": "2.0.0",
"@adobe/helix-status": "10.0.7",
"@adobe/helix-universal-logger": "3.0.8",
"@google-cloud/bigquery": "6.2.0",
"dotenv": "16.0.3",
"fs-extra": "11.1.1",
"googleapis": "118.0.0",
"json-size": "1.0.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.2",
"@adobe/helix-deploy": "9.0.24",
"@adobe/helix-universal": "4.1.9",
"@adobe/semantic-release-coralogix": "1.1.23",
"@pollyjs/adapter-node-http": "6.0.5",
"@pollyjs/core": "6.0.5",
"@pollyjs/persister-fs": "6.0.5",
"@pollyjs/persister-rest": "6.0.5",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"ajv": "8.12.0",
"c8": "7.13.0",
"chai": "4.3.7",
"chai-http": "4.3.0",
"eslint": "8.38.0",
"esmock": "2.2.1",
"husky": "8.0.3",
"jsdoc-to-markdown": "8.0.0",
"junit-report-builder": "3.0.1",
"lint-staged": "13.2.1",
"lodash": "4.17.21",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"semantic-release": "21.0.1",
"sinon": "15.0.3"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
},
"wsk": {
"namespace": "helix",
"memory": 512,
"nodeVersion": 18,
"target": "aws",
"name": "helix-services/run-query@${version}",
"static": [
"src/queries/recent-errors.sql",
"src/queries/dev-urls.sql",
"src/queries/next-resource.sql",
"src/queries/top-pages.sql",
"src/queries/ee-score.sql",
"src/queries/guess-hostname.sql",
"src/queries/content-power-curve.sql",
"src/queries/most-visited-hlx3.sql",
"src/queries/rum-dashboard.sql",
"src/queries/blobs-served-hlx3.sql",
"src/queries/daily-pageviews.sql",
"src/queries/rum-checkpoints.sql",
"src/queries/rum-sources.sql",
"src/queries/rum-targets.sql",
"src/queries/rum-experiments.sql",
"src/queries/rum-checkpoint-urls.sql",
"src/queries/rum-sources-targets.sql",
"src/queries/rum-content-requests.sql",
"src/queries/daily-rum.sql",
"src/queries/live-sites.sql",
"src/queries/rum-checkpoint-cwv-correlation.sql"
]
}
}