package.json 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "classnames",
  3. "version": "2.3.2",
  4. "description": "A simple utility for conditionally joining classNames together",
  5. "main": "index.js",
  6. "author": "Jed Watson",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/JedWatson/classnames.git"
  11. },
  12. "types": "./index.d.ts",
  13. "scripts": {
  14. "benchmarks": "node ./benchmarks/run",
  15. "benchmarks-browserify": "./node_modules/.bin/browserify ./benchmarks/runInBrowser.js >./benchmarks/runInBrowser.bundle.js",
  16. "dtslint": "dtslint",
  17. "test": "mocha tests/*.js"
  18. },
  19. "keywords": [
  20. "react",
  21. "css",
  22. "classes",
  23. "classname",
  24. "classnames",
  25. "util",
  26. "utility"
  27. ],
  28. "files": [
  29. "HISTORY.md",
  30. "LICENSE",
  31. "README.md",
  32. "*.d.ts",
  33. "*.js"
  34. ],
  35. "devDependencies": {
  36. "benchmark": "^2.1.4",
  37. "browserify": "^17.0.0",
  38. "dtslint": "^4.0.9",
  39. "mocha": "^10.0.0"
  40. }
  41. }