Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

package.json 866 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "add-line-numbers",
  3. "version": "1.0.1",
  4. "description": "adds line numbers to a source string",
  5. "main": "index.js",
  6. "license": "MIT",
  7. "author": {
  8. "name": "Matt DesLauriers",
  9. "email": "dave.des@gmail.com",
  10. "url": "https://github.com/mattdesl"
  11. },
  12. "dependencies": {
  13. "pad-left": "^1.0.2"
  14. },
  15. "devDependencies": {
  16. "faucet": "0.0.1",
  17. "get-stdin": "^4.0.1",
  18. "tape": "^4.0.0"
  19. },
  20. "scripts": {
  21. "test": "node test.js | faucet"
  22. },
  23. "keywords": [
  24. "add",
  25. "line",
  26. "numbers",
  27. "pad",
  28. "left",
  29. "padding",
  30. "pads",
  31. "space",
  32. "indent",
  33. "num"
  34. ],
  35. "repository": {
  36. "type": "git",
  37. "url": "git://github.com/Jam3/add-line-numbers.git"
  38. },
  39. "homepage": "https://github.com/Jam3/add-line-numbers",
  40. "bugs": {
  41. "url": "https://github.com/Jam3/add-line-numbers/issues"
  42. }
  43. }