package.json 1004 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "object-path",
  3. "description": "Access deep object properties using a path",
  4. "version": "0.11.8",
  5. "author": {
  6. "name": "Mario Casciaro"
  7. },
  8. "homepage": "https://github.com/mariocasciaro/object-path",
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/mariocasciaro/object-path.git"
  12. },
  13. "engines": {
  14. "node": ">= 10.12.0"
  15. },
  16. "devDependencies": {
  17. "@mariocasciaro/benchpress": "^0.1.3",
  18. "chai": "^4.3.4",
  19. "coveralls": "^3.1.1",
  20. "mocha": "^9.1.0",
  21. "mocha-lcov-reporter": "^1.3.0",
  22. "nyc": "^15.1.0"
  23. },
  24. "scripts": {
  25. "test": "mocha test.js",
  26. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
  27. "coverage": "nyc npm test",
  28. "benchmark": "node benchmark.js"
  29. },
  30. "keywords": [
  31. "deep",
  32. "path",
  33. "access",
  34. "bean",
  35. "get",
  36. "property",
  37. "dot",
  38. "prop",
  39. "object",
  40. "obj",
  41. "notation",
  42. "segment",
  43. "value",
  44. "nested",
  45. "key"
  46. ],
  47. "license": "MIT"
  48. }