package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "watch-size",
  3. "version": "2.0.0",
  4. "description": "Watch the size changes of a DOM element",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "jonathantneal/watch-size",
  8. "homepage": "https://github.com/jonathantneal/watch-size#readme",
  9. "bugs": "https://github.com/jonathantneal/watch-size/issues",
  10. "main": "index.cjs.js",
  11. "module": "index.es.mjs",
  12. "files": [
  13. "index.cjs.js",
  14. "index.es.mjs"
  15. ],
  16. "scripts": {
  17. "prepublishOnly": "npm test",
  18. "pretest": "rollup -c .rollup.js --silent",
  19. "test": "echo 'Running tests...'; npm run test:js",
  20. "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet"
  21. },
  22. "devDependencies": {
  23. "babel-core": "^6.26.3",
  24. "babel-eslint": "^8.2.6",
  25. "babel-preset-env": "^1.7.0",
  26. "eslint": "^5.2.0",
  27. "eslint-config-dev": "^2.0.0",
  28. "pre-commit": "^1.2.2",
  29. "rollup": "^0.63.4",
  30. "rollup-plugin-babel": "^3.0.7",
  31. "rollup-plugin-uglify-es": "0.0.1"
  32. },
  33. "eslintConfig": {
  34. "extends": "dev",
  35. "parser": "babel-eslint"
  36. },
  37. "keywords": [
  38. "dark",
  39. "mode",
  40. "modes",
  41. "light",
  42. "interface",
  43. "css",
  44. "media",
  45. "query",
  46. "queries"
  47. ]
  48. }