You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.2 KiB
59 lines
1.2 KiB
{ |
|
"name": "yorkie", |
|
"version": "2.0.0", |
|
"description": "githooks management forked from husky", |
|
"engines": { |
|
"node": ">=4" |
|
}, |
|
"scripts": { |
|
"test": "jest", |
|
"format": "prettier --single-quote --no-semi --write **/*.js", |
|
"install": "node bin/install.js", |
|
"uninstall": "node bin/uninstall.js" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/yyx990803/yorkie.git" |
|
}, |
|
"keywords": [ |
|
"git", |
|
"hook", |
|
"hooks", |
|
"pre-commit", |
|
"precommit", |
|
"post-commit", |
|
"postcommit", |
|
"pre-push", |
|
"prepush", |
|
"post-merge", |
|
"postmerge", |
|
"test" |
|
], |
|
"authors": [ |
|
"Typicode <typicode@gmail.com>", |
|
"Evan You" |
|
], |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/yyx990803/yorkie/issues" |
|
}, |
|
"homepage": "https://github.com/yyx990803/yorkie", |
|
"devDependencies": { |
|
"jest": "^20.0.4", |
|
"mkdirp": "^0.5.1", |
|
"prettier": "^1.4.4", |
|
"rimraf": "^2.6.1", |
|
"tempy": "^0.1.0" |
|
}, |
|
"dependencies": { |
|
"execa": "^0.8.0", |
|
"is-ci": "^1.0.10", |
|
"normalize-path": "^1.0.0", |
|
"strip-indent": "^2.0.0" |
|
}, |
|
"standard": { |
|
"env": { |
|
"jest": true |
|
} |
|
} |
|
}
|
|
|