package.json 499 B

1234567891011121314151617181920212223
  1. {
  2. "name": "dottie",
  3. "version": "2.0.2",
  4. "devDependencies": {
  5. "chai": "^4.2.0",
  6. "mocha": "^5.2.0"
  7. },
  8. "license": "MIT",
  9. "files": [
  10. "dottie.js"
  11. ],
  12. "description": "Fast and safe nested object access and manipulation in JavaScript",
  13. "author": "Mick Hansen <maker@mhansen.io>",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/mickhansen/dottie.js.git"
  17. },
  18. "main": "dottie.js",
  19. "scripts": {
  20. "test": "mocha -t 5000 -s 100 --reporter spec test"
  21. }
  22. }