-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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": "to-do-list",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/bcentdev/to-do-list.git"
},
"author": "Vicente Torres",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcentdev/to-do-list/issues"
},
"homepage": "https://github.com/bcentdev/to-do-list#readme",
"scripts": {
"typecheck": "yarn workspaces foreach -tvp run typecheck",
"lint": "yarn workspaces foreach -tvp run lint",
"release": "standard-version --release-as",
"push": "git push --follow-tags origin master",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"standard-version": "^9.5.0"
},
"workspaces": [
"packages/*",
"eslint-config"
],
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.0",
"pinst": "^3.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"lower-case",
"pascal-case",
"camel-case"
]
]
}
}
}