-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "@adobe/helix-shared-monorepo",
"private": true,
"version": "1.0.0",
"description": "Shared modules of the Helix Project - monorepo",
"type": "module",
"scripts": {
"docs:schema": "jsonschema2md -d packages/helix-shared-config/src/schemas -o docs -x docs -f yaml",
"docs:api": "jsdoc2md -c .jsdoc.json --files packages/*/src/*.js > docs/API.md",
"docs": "npm run docs:schema && 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/helix-shared.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-shared/issues"
},
"homepage": "https://github.com/adobe/helix-shared#readme",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/jsonschema2md": "8.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"ajv": "8.17.1",
"c8": "10.1.2",
"eslint": "8.57.1",
"husky": "9.1.7",
"jsdoc-to-markdown": "9.1.1",
"lint-staged": "15.2.10",
"mocha": "11.0.1",
"mocha-multi-reporters": "1.5.1",
"mocha-suppress-logs": "0.5.1",
"nock": "13.5.6",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "8.0.2"
},
"lint-staged": {
"*.js": "eslint"
}
}