package.json 791 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "node-kcp",
  3. "version": "1.0.13",
  4. "description": "KCP protocol for Node.js",
  5. "main": "include_dirs.js",
  6. "dependencies": {
  7. "nan": "^2.16.0"
  8. },
  9. "devDependencies": {
  10. "chai": "latest",
  11. "grunt": "^1.0.4",
  12. "grunt-contrib-clean": "latest",
  13. "grunt-mocha-test": "latest",
  14. "mocha": "^7.0.0"
  15. },
  16. "scripts": {
  17. "test": "grunt",
  18. "install": "node-gyp rebuild"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/leenjewel/node-kcp.git"
  23. },
  24. "keywords": [
  25. "kcp",
  26. "protocol",
  27. "game",
  28. "server"
  29. ],
  30. "author": "leenjewel",
  31. "license": "Apache-2.0",
  32. "gypfile": true,
  33. "bugs": {
  34. "url": "https://github.com/leenjewel/node-kcp/issues"
  35. },
  36. "homepage": "https://github.com/leenjewel/node-kcp#readme"
  37. }