-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.25 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.25 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
{
"name": "pyquery-core",
"description": "PyQuery is a low-code ETL app that actually slaps",
"version": "5.0.0-b7",
"repository": "https://github.com/tks18/pyquery",
"author": "tks18 <[email protected]>",
"license": "GPL-3.0-only",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"commitizen": "^4.3.1",
"conventional-recommended-bump": "^11.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.36.0",
"husky": "^9.1.7",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"prepare": "husky",
"init:cz": "commitizen init cz-conventional-changelog --yarn --dev --exact",
"git:stage": "git add",
"git:commit": "cz",
"git:push": "git push --follow-tags origin dev",
"release:pre": "standard-version --commit-all --prerelease",
"release:patch": "standard-version --commit-all --release-as patch",
"release:minor": "standard-version --commit-all --release-as minor",
"release:major": "standard-version --commit-all --release-as major",
"release:as": "standard-version --commit-all --release-as"
},
"packageManager": "[email protected]"
}