package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "deep-is",
  3. "version": "0.1.3",
  4. "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN",
  5. "main": "index.js",
  6. "directories": {
  7. "lib": ".",
  8. "example": "example",
  9. "test": "test"
  10. },
  11. "scripts": {
  12. "test": "tape test/*.js"
  13. },
  14. "devDependencies": {
  15. "tape": "~1.0.2"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "http://github.com/thlorenz/deep-is.git"
  20. },
  21. "keywords": [
  22. "equality",
  23. "equal",
  24. "compare"
  25. ],
  26. "author": {
  27. "name": "Thorsten Lorenz",
  28. "email": "thlorenz@gmx.de",
  29. "url": "http://thlorenz.com"
  30. },
  31. "license": {
  32. "type": "MIT",
  33. "url": "https://github.com/thlorenz/deep-is/blob/master/LICENSE"
  34. },
  35. "testling": {
  36. "files": "test/*.js",
  37. "browsers": {
  38. "ie": [
  39. 6,
  40. 7,
  41. 8,
  42. 9
  43. ],
  44. "ff": [
  45. 3.5,
  46. 10,
  47. 15
  48. ],
  49. "chrome": [
  50. 10,
  51. 22
  52. ],
  53. "safari": [
  54. 5.1
  55. ],
  56. "opera": [
  57. 12
  58. ]
  59. }
  60. }
  61. }