package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "_from": "fast-deep-equal@^3.1.1",
  3. "_id": "fast-deep-equal@3.1.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
  6. "_location": "/fast-deep-equal",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "fast-deep-equal@^3.1.1",
  12. "name": "fast-deep-equal",
  13. "escapedName": "fast-deep-equal",
  14. "rawSpec": "^3.1.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.1.1"
  17. },
  18. "_requiredBy": [
  19. "/ajv",
  20. "/eslint",
  21. "/table/ajv"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  24. "_shasum": "3a7d56b559d6cbc3eb512325244e619a65c6c525",
  25. "_spec": "fast-deep-equal@^3.1.1",
  26. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\ajv",
  27. "author": {
  28. "name": "Evgeny Poberezkin"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/epoberezkin/fast-deep-equal/issues"
  32. },
  33. "bundleDependencies": false,
  34. "deprecated": false,
  35. "description": "Fast deep equal",
  36. "devDependencies": {
  37. "coveralls": "^3.1.0",
  38. "dot": "^1.1.2",
  39. "eslint": "^7.2.0",
  40. "mocha": "^7.2.0",
  41. "nyc": "^15.1.0",
  42. "pre-commit": "^1.2.2",
  43. "react": "^16.12.0",
  44. "react-test-renderer": "^16.12.0",
  45. "sinon": "^9.0.2",
  46. "typescript": "^3.9.5"
  47. },
  48. "files": [
  49. "index.js",
  50. "index.d.ts",
  51. "react.js",
  52. "react.d.ts",
  53. "es6/"
  54. ],
  55. "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
  56. "keywords": [
  57. "fast",
  58. "equal",
  59. "deep-equal"
  60. ],
  61. "license": "MIT",
  62. "main": "index.js",
  63. "name": "fast-deep-equal",
  64. "nyc": {
  65. "exclude": [
  66. "**/spec/**",
  67. "node_modules"
  68. ],
  69. "reporter": [
  70. "lcov",
  71. "text-summary"
  72. ]
  73. },
  74. "repository": {
  75. "type": "git",
  76. "url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
  77. },
  78. "scripts": {
  79. "benchmark": "npm i && npm run build && cd ./benchmark && npm i && node ./",
  80. "build": "node build",
  81. "eslint": "eslint *.js benchmark/*.js spec/*.js",
  82. "prepublish": "npm run build",
  83. "test": "npm run build && npm run eslint && npm run test-ts && npm run test-cov",
  84. "test-cov": "nyc npm run test-spec",
  85. "test-spec": "mocha spec/*.spec.js -R spec",
  86. "test-ts": "tsc --target ES5 --noImplicitAny index.d.ts"
  87. },
  88. "types": "index.d.ts",
  89. "version": "3.1.3"
  90. }