package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "author": {
  3. "name": "Steve Mao",
  4. "email": "maochenyan@gmail.com",
  5. "url": "https://github.com/stevemao"
  6. },
  7. "bin": "./src/cli.js",
  8. "bugs": "https://github.com/conventional-changelog/get-pkg-repo/issues",
  9. "description": "Get repository user and project information from package.json file contents.",
  10. "engines": {
  11. "node": ">=6.9.0"
  12. },
  13. "files": [
  14. "src/"
  15. ],
  16. "homepage": "https://github.com/conventional-changelog/get-pkg-repo#readme",
  17. "keywords": [
  18. "repository-url"
  19. ],
  20. "license": "MIT",
  21. "main": "src/index.js",
  22. "name": "get-pkg-repo",
  23. "renovate": {
  24. "extends": [
  25. "config:base",
  26. ":maintainLockFilesWeekly",
  27. ":rebaseStalePrs",
  28. ":automergeDigest",
  29. ":gitSignOff",
  30. ":preserveSemverRanges"
  31. ]
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/conventional-changelog/get-pkg-repo.git"
  36. },
  37. "scripts": {
  38. "dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:6 sh -c \"yarn install; yarn test; bash\"",
  39. "test": "eslint src/ && nyc mocha --opts mocha.opts src/**/*.spec.js"
  40. },
  41. "version": "4.2.1",
  42. "dependencies": {
  43. "@hutson/parse-repository-url": "^3.0.0",
  44. "hosted-git-info": "^4.0.0",
  45. "through2": "^2.0.0",
  46. "yargs": "^16.2.0"
  47. },
  48. "devDependencies": {
  49. "@hutson/conventional-changelog-config": "^2.0.0",
  50. "@hutson/eslint-config": "^3.0.0",
  51. "@hutson/nyc-config": "^2.0.0",
  52. "chai": "^4.0.2",
  53. "codecov": "^3.0.0",
  54. "debug": "^4.0.0",
  55. "eslint": "^5.3.0",
  56. "mocha": "^6.0.0",
  57. "npm-publish-git-tag": "^3.0.0",
  58. "nyc": "^13.0.0",
  59. "semantic-release-github": "^4.0.17"
  60. }
  61. }