Website for visualizing a persons github network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
895 B

  1. {
  2. "name": "github-graphs",
  3. "version": "0.0.2",
  4. "description": "Generates graphs of github things.",
  5. "main": "server.js",
  6. "scripts": {
  7. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
  8. "test": "mocha routes/test --exit --reporter spec",
  9. "start": "node server.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/jrtechs/github-graphs.git"
  14. },
  15. "author": "Jeffery Russell, Eric Lang",
  16. "license": "ISC",
  17. "bugs": {
  18. "url": "https://github.com/jrtechs/github-graphs/issues"
  19. },
  20. "homepage": "https://github.com/jrtechs/github-graphs#readme",
  21. "dependencies": {
  22. "dotenv": "~8.2.0",
  23. "express": "~4.16.4",
  24. "express-session": "~1.15.6",
  25. "fs": "0.0.1-security",
  26. "got": "~9.6.0",
  27. "memory-cache": "~0.2.0"
  28. },
  29. "devDependencies": {
  30. "coveralls": "*",
  31. "mocha": "*",
  32. "nyc": "*"
  33. }
  34. }