package.json 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "bahai-date-rest-api",
  3. "version": "1.0.0",
  4. "description": "RESTful Baha'i date API",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "test": "echo \"Error: No test specified\" && exit 1",
  9. "start": "nodemon server.js"
  10. },
  11. "engines": {
  12. "node": ">=8.0.0"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/dragfyre/bahai-date-api.git"
  17. },
  18. "keywords": [
  19. "RESTful",
  20. "API",
  21. "date",
  22. "calendar",
  23. "Baha'i"
  24. ],
  25. "author": "dragfyre",
  26. "contributors": [],
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/dragfyre/bahai-date-api/issues"
  30. },
  31. "homepage": "https://github.com/dragfyre/bahai-date-api#readme",
  32. "devDependencies": {
  33. "eslint": "^6.8.0",
  34. "nodemon": "^2.0.2"
  35. },
  36. "dependencies": {
  37. "deep-extend": "^0.6.0",
  38. "express": "^4.17.1",
  39. "fsevents": "^2.1.2",
  40. "randomatic": "^3.1.1",
  41. "rc": "^1.2.8"
  42. }
  43. }