package.json 739 B

123456789101112131415161718192021222324
  1. {
  2. "name": "corser",
  3. "version": "2.0.1",
  4. "description": "A highly configurable, middleware compatible implementation of CORS.",
  5. "keywords": ["cors", "cross-origin resource sharing", "connect", "express", "middleware"],
  6. "bugs": "https://github.com/agrueneberg/Corser/issues",
  7. "license": "MIT",
  8. "author": "Alexander Grüneberg <alexander.grueneberg@googlemail.com>",
  9. "main": "./lib/corser.js",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/agrueneberg/Corser.git"
  13. },
  14. "scripts": {
  15. "test": "./node_modules/.bin/mocha"
  16. },
  17. "devDependencies": {
  18. "mocha": "1.3.x",
  19. "expect.js": "0.1.x"
  20. },
  21. "engines": {
  22. "node": ">= 0.4.0"
  23. }
  24. }