You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
860 B

2 years ago
  1. {
  2. "name": "camelcase-css",
  3. "description": "Convert a kebab-cased CSS property into a camelCased DOM property.",
  4. "version": "2.0.1",
  5. "license": "MIT",
  6. "author": "Steven Vachon <contact@svachon.com> (https://www.svachon.com/)",
  7. "repository": "stevenvachon/camelcase-css",
  8. "browser": "index-es5.js",
  9. "devDependencies": {
  10. "babel-cli": "^6.26.0",
  11. "babel-core": "^6.26.3",
  12. "babel-plugin-optimize-starts-with": "^1.0.1",
  13. "babel-preset-env": "^1.7.0",
  14. "chai": "^4.1.2",
  15. "mocha": "^5.2.0"
  16. },
  17. "engines": {
  18. "node": ">= 6"
  19. },
  20. "scripts": {
  21. "pretest": "babel index.js --out-file=index-es5.js --presets=env --plugins=optimize-starts-with",
  22. "test": "mocha test.js --check-leaks --bail"
  23. },
  24. "files": [
  25. "index.js",
  26. "index-es5.js"
  27. ],
  28. "keywords": [
  29. "camelcase",
  30. "case",
  31. "css",
  32. "dom"
  33. ]
  34. }