-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "@adobe/spacecat-shared-rum-api-client",
"version": "2.40.12",
"description": "Shared modules of the Spacecat Services - Rum API client",
"type": "module",
"engines": {
"node": ">=22.0.0 <25.0.0",
"npm": ">=10.9.0 <12.0.0"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "c8 mocha 'test/**/*.test.js'",
"lint": "eslint .",
"clean": "rm -rf package-lock.json node_modules",
"run": "node src/test.js"
},
"mocha": {
"require": "test/setup-env.js",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"spec": "test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/spacecat-shared.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/spacecat-shared/issues"
},
"homepage": "https://github.com/adobe/spacecat-shared#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adobe/fetch": "4.3.0",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-universal": "5.4.1",
"@adobe/rum-distiller": "1.23.0",
"@adobe/spacecat-shared-utils": "1.81.1",
"aws4": "1.13.2",
"urijs": "1.19.11"
},
"devDependencies": {
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"nock": "14.0.15",
"sinon": "21.1.2",
"sinon-chai": "4.0.1",
"typescript": "6.0.3"
}
}