-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "input-manager-monorepo",
"version": "0.0.0",
"main": "index.js",
"authors": [
"Ryosuke Hana <https://twitter.com/whoisryosuke>"
],
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspace input-manager-docs dev",
"build": "yarn workspace input-map build",
"prettier": "prettier -l \"./packages/**/*.{js,jsx,ts,tsx,md}\" --write",
"commit": "git-cz",
"release": "yarn workspace input-map release"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"prettier": "^2.7.1"
},
"command": {
"publish": {
"conventionalCommits": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}