-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "validate-branch-name",
"version": "1.3.1",
"description": "Git branch name validator",
"main": "index.js",
"bin": {
"validate-branch-name": "cli.js"
},
"scripts": {
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"test": "npm link && istanbul cover -x test/**/*.test.js node_modules/mocha/bin/_mocha -- -R spec test/**/*.test.js",
"lint": "eslint . --fix",
"ci": "npm run lint && npm run test && npm run check-coverage && codecov",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JsonMa/validate-branch-name.git"
},
"keywords": [
"validate-branch-name",
"branch-name",
"branch",
"hook",
"git",
"git hook",
"git branch name",
"branch name",
"pre push",
"git push"
],
"author": "jsonma",
"license": "MIT",
"bugs": {
"url": "https://github.com/JsonMa/validate-branch-name/issues"
},
"homepage": "https://github.com/JsonMa/validate-branch-name#readme",
"dependencies": {
"commander": "^8.3.0",
"cosmiconfig": "^8.1.3",
"current-git-branch": "^1.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-egg": "^7.4.1",
"eslint-plugin-import": "^2.18.2",
"istanbul": "^0.4.5",
"mocha": "^10.2.0"
}
}