forked from honkit/honkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "honkit-root",
"private": true,
"homepage": "https://github.com/honkit/honkit",
"bugs": {
"url": "https://github.com/honkit/honkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honkit/honkit.git"
},
"keywords": [
"Markdown",
"Book",
"HonKit",
"GitBook"
],
"license": "Apache-2.0",
"authors": [
"azu. <[email protected]>"
],
"workspaces": [
"packages/*",
"packages/@honkit/*",
"examples/*"
],
"scripts": {
"lint": "eslint .",
"build": "lerna run build --ignore \"@example/*\"",
"clean": "lerna run clean --ignore \"@example/*\"",
"test": "lerna run test --ignore \"@example/*\"",
"updateSnapshot": "lerna run updateSnapshot --ignore \"@example/*\"",
"versionup": "lerna version",
"ci:versionup:patch": "lerna version patch --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:minor": "lerna version minor --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:major": "lerna version major --no-push --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v$(node -p 'require(\"./lerna.json\").version')\"",
"release": "lerna publish from-package",
"ci:release": "lerna publish from-package --yes",
"release-ci": "yarn run build && lerna publish from-package --yes --no-verify-access",
"honkit:build": "npm run build && honkit build",
"honkit:serve": "honkit serve",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"devDependencies": {
"eslint": "^8.23.1",
"lerna": "^7.1.1",
"lint-staged": "^13.0.3",
"prettier": "^3.0.3",
"typescript": "^4.8.3"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}