package.json 915 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "dlv",
  3. "version": "1.1.3",
  4. "description": "Safely get a dot-notated property within an object.",
  5. "main": "dist/dlv.js",
  6. "browser": "dist/dlv.umd.js",
  7. "module": "dist/dlv.es.js",
  8. "scripts": {
  9. "dev": "microbundle watch",
  10. "build": "microbundle",
  11. "prepublish": "npm run build",
  12. "test": "node test",
  13. "release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
  14. },
  15. "keywords": [
  16. "delve",
  17. "dot notation",
  18. "dot"
  19. ],
  20. "files": [
  21. "index.js",
  22. "dist"
  23. ],
  24. "author": "Jason Miller <jason@developit.ca> (http://jasonformat.com)",
  25. "repository": "developit/dlv",
  26. "license": "MIT",
  27. "devDependencies": {
  28. "microbundle": "^0.11.0"
  29. },
  30. "__npminstall_done": true,
  31. "_from": "dlv@1.1.3",
  32. "_resolved": "https://registry.npmmirror.com/dlv/-/dlv-1.1.3.tgz"
  33. }