package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "fast-deep-equal",
  3. "version": "1.1.0",
  4. "description": "Fast deep equal",
  5. "main": "index.js",
  6. "scripts": {
  7. "eslint": "eslint *.js benchmark spec",
  8. "test-spec": "mocha spec/*.spec.js -R spec",
  9. "test-cov": "nyc npm run test-spec",
  10. "test-ts": "tsc --target ES5 --noImplicitAny index.d.ts",
  11. "test": "npm run eslint && npm run test-ts && npm run test-cov"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
  16. },
  17. "keywords": [
  18. "fast",
  19. "equal",
  20. "deep-equal"
  21. ],
  22. "author": "Evgeny Poberezkin",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/epoberezkin/fast-deep-equal/issues"
  26. },
  27. "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
  28. "devDependencies": {
  29. "benchmark": "^2.1.4",
  30. "coveralls": "^2.13.1",
  31. "deep-eql": "^2.0.2",
  32. "deep-equal": "^1.0.1",
  33. "eslint": "^4.0.0",
  34. "lodash": "^4.17.4",
  35. "mocha": "^3.4.2",
  36. "nano-equal": "^1.0.1",
  37. "nyc": "^11.0.2",
  38. "pre-commit": "^1.2.2",
  39. "shallow-equal-fuzzy": "0.0.2",
  40. "typescript": "^2.6.1",
  41. "underscore": "^1.8.3"
  42. },
  43. "nyc": {
  44. "exclude": [
  45. "**/spec/**",
  46. "node_modules"
  47. ],
  48. "reporter": [
  49. "lcov",
  50. "text-summary"
  51. ]
  52. },
  53. "files": [
  54. "index.js",
  55. "index.d.ts"
  56. ],
  57. "types": "index.d.ts",
  58. "__npminstall_done": "Thu Dec 24 2020 20:21:00 GMT+0800 (CST)",
  59. "_from": "fast-deep-equal@1.1.0",
  60. "_resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-1.1.0.tgz?cache=0&sync_timestamp=1591599782104&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-1.1.0.tgz"
  61. }