package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "shvl",
  3. "version": "2.0.3",
  4. "description": "Get and set dot-notated properties within an object",
  5. "license": "MIT",
  6. "author": "Robin van der Vleuten <robin@webstronauts.co>",
  7. "source": "index.js",
  8. "main": "dist/shvl.js",
  9. "module": "dist/shvl.mjs",
  10. "unpkg": "dist/shvl.umd.js",
  11. "typings": "index.d.ts",
  12. "keywords": [
  13. "path",
  14. "dot notation",
  15. "dot"
  16. ],
  17. "files": [
  18. "dist",
  19. "index.d.ts",
  20. "index.js"
  21. ],
  22. "scripts": {
  23. "build": "microbundle",
  24. "prepare": "run-s build",
  25. "test": "run-p test:**",
  26. "test:jest": "jest --env=jsdom",
  27. "test:size": "bundlesize"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/robinvdvleuten/shvl.git"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/robinvdvleuten/shvl/issues"
  35. },
  36. "homepage": "https://github.com/robinvdvleuten/shvl#readme",
  37. "bundlesize": [
  38. {
  39. "path": "./dist/*.js",
  40. "threshold": "300b"
  41. }
  42. ],
  43. "babel": {
  44. "presets": [
  45. "@babel/preset-env"
  46. ]
  47. },
  48. "devDependencies": {
  49. "@babel/core": "^7.0.0",
  50. "@babel/preset-env": "^7.0.0",
  51. "babel-jest": "^26.2.2",
  52. "bundlesize": "^0.18.0",
  53. "jest": "^26.5.3",
  54. "jest-in-case": "^1.0.2",
  55. "microbundle": "^0.13.0",
  56. "npm-run-all": "^4.1.2"
  57. }
  58. }