package.json 726 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "simple-swizzle",
  3. "description": "Simply swizzle your arguments",
  4. "version": "0.2.2",
  5. "author": "Qix (http://github.com/qix-)",
  6. "keywords": [
  7. "argument",
  8. "arguments",
  9. "swizzle",
  10. "swizzling",
  11. "parameter",
  12. "parameters",
  13. "mixed",
  14. "array"
  15. ],
  16. "license": "MIT",
  17. "scripts": {
  18. "pretest": "xo",
  19. "test": "mocha --compilers coffee:coffee-script/register"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "repository": "qix-/node-simple-swizzle",
  25. "devDependencies": {
  26. "coffee-script": "^1.9.3",
  27. "coveralls": "^2.11.2",
  28. "istanbul": "^0.3.17",
  29. "mocha": "^2.2.5",
  30. "should": "^7.0.1",
  31. "xo": "^0.7.1"
  32. },
  33. "dependencies": {
  34. "is-arrayish": "^0.3.1"
  35. }
  36. }