package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "_from": "fast-deep-equal@^1.0.0",
  3. "_id": "fast-deep-equal@1.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=",
  6. "_location": "/fast-deep-equal",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "fast-deep-equal@^1.0.0",
  12. "name": "fast-deep-equal",
  13. "escapedName": "fast-deep-equal",
  14. "rawSpec": "^1.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.0"
  17. },
  18. "_requiredBy": [
  19. "/ajv"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz",
  22. "_shasum": "c053477817c86b51daa853c81e059b733d023614",
  23. "_spec": "fast-deep-equal@^1.0.0",
  24. "_where": "C:\\John\\WorkSpace\\WebStorm\\WinBoxNode\\node_modules\\ajv",
  25. "author": {
  26. "name": "Evgeny Poberezkin"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/epoberezkin/fast-deep-equal/issues"
  30. },
  31. "bundleDependencies": false,
  32. "deprecated": false,
  33. "description": "Fast deep equal",
  34. "devDependencies": {
  35. "benchmark": "^2.1.4",
  36. "coveralls": "^2.13.1",
  37. "deep-eql": "^2.0.2",
  38. "deep-equal": "^1.0.1",
  39. "eslint": "^4.0.0",
  40. "lodash": "^4.17.4",
  41. "mocha": "^3.4.2",
  42. "nano-equal": "^1.0.1",
  43. "nyc": "^11.0.2",
  44. "pre-commit": "^1.2.2",
  45. "shallow-equal-fuzzy": "0.0.2",
  46. "typescript": "^2.6.1",
  47. "underscore": "^1.8.3"
  48. },
  49. "files": [
  50. "index.js",
  51. "index.d.ts"
  52. ],
  53. "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
  54. "keywords": [
  55. "fast",
  56. "equal",
  57. "deep-equal"
  58. ],
  59. "license": "MIT",
  60. "main": "index.js",
  61. "name": "fast-deep-equal",
  62. "nyc": {
  63. "exclude": [
  64. "**/spec/**",
  65. "node_modules"
  66. ],
  67. "reporter": [
  68. "lcov",
  69. "text-summary"
  70. ]
  71. },
  72. "repository": {
  73. "type": "git",
  74. "url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
  75. },
  76. "scripts": {
  77. "eslint": "eslint *.js benchmark spec",
  78. "test": "npm run eslint && npm run test-ts && npm run test-cov",
  79. "test-cov": "nyc npm run test-spec",
  80. "test-spec": "mocha spec/*.spec.js -R spec",
  81. "test-ts": "tsc --target ES5 --noImplicitAny index.d.ts"
  82. },
  83. "types": "index.d.ts",
  84. "version": "1.1.0"
  85. }