-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.66 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
{
"name": "@adobe/spacecat-shared-monorepo",
"private": true,
"version": "0.0.0-semantic-release",
"description": "Shared modules of the Spacecat Services - monorepo",
"type": "module",
"engines": {
"node": ">=20.0.0 <23.0.0",
"npm": ">=10.0.0 <11.0.0"
},
"scripts": {
"docs:api": "jsdoc2md -c .jsdoc.json --files packages/*/src/*.js > docs/API.md",
"docs": "npm run docs:api",
"test": "npm test -ws",
"lint": "npm run lint -ws",
"semantic-release": "npx --no -ws semantic-release",
"semantic-release-dry": "npx --no -ws semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky",
"clean": "rm -rf package-lock.json node_modules"
},
"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",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"ajv": "8.17.1",
"c8": "10.1.2",
"eslint": "8.57.1",
"husky": "9.1.6",
"jsdoc-to-markdown": "9.0.5",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.5",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "8.0.2",
"typescript": "5.6.3"
},
"lint-staged": {
"*.js": "eslint"
}
}