-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
34 lines (34 loc) · 898 Bytes
/
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
{
"name": "fvm",
"version": "1.1.6",
"description": "Flutter SDK versions Manager",
"repository": "git@github.com:dashixiong91/fvm.git",
"author": "qianxinfeng <qianxinfeng@meituan.com>",
"license": "MIT",
"installationMethod": "tar",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/prompt": "^8.2.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.25",
"husky": "^4.0.0-beta.5"
},
"scripts": {
"postinstall": "bin/init.sh",
"test": "bin/test.sh",
"commit": "git-cz",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"pub": "bin/publish.sh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}