package.json 554 B

123456789101112131415161718192021222324
  1. {
  2. "name": "xmlhttprequest",
  3. "description": "XMLHttpRequest for Node",
  4. "version": "1.8.0",
  5. "author": {
  6. "name": "Dan DeFelippi",
  7. "url": "http://driverdan.com"
  8. },
  9. "keywords": ["xhr", "ajax"],
  10. "license": "MIT",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/driverdan/node-XMLHttpRequest.git"
  14. },
  15. "bugs": "http://github.com/driverdan/node-XMLHttpRequest/issues",
  16. "engines": {
  17. "node": ">=0.4.0"
  18. },
  19. "directories": {
  20. "lib": "./lib",
  21. "example": "./example"
  22. },
  23. "main": "./lib/XMLHttpRequest.js"
  24. }