-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.06 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.06 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
55
56
57
58
59
{
"name": "@adobe/spacecat-shared-data-access",
"version": "3.62.0",
"description": "Shared modules of the Spacecat Services - Data Access",
"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:it": "npm run test:it:self-seeded && npm run test:it:tenant-seeded",
"test:it:self-seeded": "IT_SEED_MODE=none mocha --require ./test/it/fixtures.js --spec \"test/it/**/*.test.js\" --ignore \"test/it/postgrest/**/*.test.js\"",
"test:it:tenant-seeded": "IT_SEED_MODE=tenant-sql mocha --require ./test/it/fixtures.js --spec \"test/it/postgrest/**/*.test.js\"",
"test": "c8 mocha --spec \"test/unit/**/*.test.js\"",
"test:debug": "mocha --inspect-brk --require ./test/setup-env.js --spec \"test/unit/**/*.test.js\"",
"test:debug:config": "mocha --inspect-brk --require ./test/setup-env.js --spec \"test/unit/models/site/config.test.js\"",
"test:debug:grep": "mocha --inspect-brk --require ./test/setup-env.js --grep",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf package-lock.json node_modules"
},
"mocha": {
"require": "test/setup-env.js",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"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.2.3",
"@adobe/spacecat-shared-utils": "1.105.0",
"@supabase/postgrest-js": "2.105.4",
"@aws-sdk/client-s3": "^3.940.0",
"@types/joi": "17.2.3",
"aws-xray-sdk": "3.12.0",
"joi": "18.2.1",
"pluralize": "8.0.0"
},
"devDependencies": {
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"nock": "14.0.15",
"sinon": "21.1.2",
"sinon-chai": "4.0.1"
}
}