package.json 642 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "wind-js-server",
  3. "version": "0.0.3",
  4. "description": "Demo rest service to expose Grib2 wind forecast data as JSON",
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "node app.js",
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "keywords": [
  11. "wind-js",
  12. "node",
  13. "grib2"
  14. ],
  15. "author": "danwild@y7mail.com",
  16. "license": "ISC",
  17. "dependencies": {
  18. "cors": "^2.7.1",
  19. "express": "^4.13.4",
  20. "grib2json": "^1.0.2",
  21. "iconv-lite": "^0.6.3",
  22. "moment": "^2.12.0",
  23. "multer": "1.4.5-lts.1",
  24. "postman-request": "2.88.1-postman.32",
  25. "q": "^1.4.1",
  26. "xml2js": "^0.5.0"
  27. }
  28. }