forked from GitbookIO/rousseau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"private": true,
"name": "root",
"version": "1.0.0",
"description": "monorepo",
"scripts": {
"test": "npm run test -ws",
"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",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/rousseau.git"
},
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/rousseau/issues"
},
"homepage": "https://github.com/textlint-rule/rousseau#readme",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"devDependencies": {
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}