package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "title": "The Definitive List of Text Extensions",
  3. "name": "textextensions",
  4. "version": "3.3.0",
  5. "description": "A package that contains an array of every single file extension there is for text files",
  6. "homepage": "https://github.com/bevry/textextensions",
  7. "license": "MIT",
  8. "keywords": [
  9. "text",
  10. "extensions",
  11. "text extensions",
  12. "text-extensions"
  13. ],
  14. "badges": {
  15. "list": [
  16. "travisci",
  17. "npmversion",
  18. "npmdownloads",
  19. "daviddm",
  20. "daviddmdev",
  21. "---",
  22. "githubsponsors",
  23. "patreon",
  24. "flattr",
  25. "liberapay",
  26. "buymeacoffee",
  27. "opencollective",
  28. "crypto",
  29. "paypal",
  30. "wishlist"
  31. ],
  32. "config": {
  33. "githubSponsorsUsername": "balupton",
  34. "buymeacoffeeUsername": "balupton",
  35. "cryptoURL": "https://bevry.me/crypto",
  36. "flattrUsername": "balupton",
  37. "liberapayUsername": "bevry",
  38. "opencollectiveUsername": "bevry",
  39. "patreonUsername": "bevry",
  40. "paypalURL": "https://bevry.me/paypal",
  41. "wishlistURL": "https://bevry.me/wishlist",
  42. "travisTLD": "com"
  43. }
  44. },
  45. "funding": "https://bevry.me/fund",
  46. "author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me)",
  47. "maintainers": [
  48. "Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
  49. ],
  50. "contributors": [
  51. "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
  52. "Jamy Timmermans <jamy@mixer.com> (https://github.com/JamyDev)",
  53. "Felipe Beline <felipe@fbeline.com> (http://blog.fbeline.com)",
  54. "jaswrks (http://src.works)",
  55. "monsterkodi (http://monsterkodi.github.io)",
  56. "jaswrks (http://jaswrks.com)",
  57. "Joshua Evans <TheJoshuaEvans@gmail.com> (http://www.linkedin.com/profile/view?id=351521559)",
  58. "LvChengbin <lvchengbin59@gmail.com> (https://github.com/LvChengbin)",
  59. "dependabot-preview[bot] (http://github.com/apps/dependabot-preview)"
  60. ],
  61. "bugs": {
  62. "url": "https://github.com/bevry/textextensions/issues"
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "https://github.com/bevry/textextensions.git"
  67. },
  68. "engines": {
  69. "node": ">=8"
  70. },
  71. "editions": [
  72. {
  73. "description": "JSON",
  74. "directory": "source",
  75. "entry": "index.json",
  76. "tags": [
  77. "json"
  78. ],
  79. "engines": {
  80. "node": true,
  81. "browsers": true
  82. }
  83. }
  84. ],
  85. "type": "commonjs",
  86. "main": "source/index.json",
  87. "browser": "source/index.json",
  88. "devDependencies": {
  89. "assert-helpers": "^5.8.0",
  90. "binaryextensions": "^2.2.0",
  91. "kava": "^4.4.0",
  92. "projectz": "^1.16.0",
  93. "valid-directory": "^1.5.0"
  94. },
  95. "scripts": {
  96. "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
  97. "our:compile": "echo no need for this project",
  98. "our:deploy": "echo no need for this project",
  99. "our:meta": "npm run our:meta:projectz",
  100. "our:meta:projectz": "projectz compile",
  101. "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
  102. "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
  103. "our:release:check-dirty": "git diff --exit-code",
  104. "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
  105. "our:release:push": "git push origin master && git push origin --tags",
  106. "our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
  107. "our:setup": "npm run our:setup:install",
  108. "our:setup:install": "npm install",
  109. "our:test": "npm run our:verify && npm test",
  110. "our:verify": "npm run our:verify:directory",
  111. "our:verify:directory": "npx valid-directory",
  112. "test": "node ./source/test.js"
  113. }
  114. }