is-git-branch-name-valid
Version:
Check that a git branch name is well formed
36 lines (35 loc) • 732 B
JSON
{
"name": "is-git-branch-name-valid",
"version": "1.0.1",
"description": "Check that a git branch name is well formed",
"license": "MIT",
"author": "Vincent Weevers",
"scripts": {
"test": "standard && nyc node test.js"
},
"files": [
"index.js"
],
"dependencies": {
"is-git-ref-name-valid": "^1.0.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/vweevers/is-git-branch-name-valid.git"
},
"homepage": "https://github.com/vweevers/is-git-branch-name-valid",
"keywords": [
"branch",
"git",
"refname",
"validate"
],
"engines": {
"node": ">=10"
}
}