The LM Control website. Simple yet efficient.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 959B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "bytes",
  3. "description": "Utility to parse a string bytes to bytes and vice-versa",
  4. "version": "3.1.1",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
  6. "contributors": [
  7. "Jed Watson <jed.watson@me.com>",
  8. "Théo FIDRY <theo.fidry@gmail.com>"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "byte",
  13. "bytes",
  14. "utility",
  15. "parse",
  16. "parser",
  17. "convert",
  18. "converter"
  19. ],
  20. "repository": "visionmedia/bytes.js",
  21. "devDependencies": {
  22. "eslint": "7.32.0",
  23. "eslint-plugin-markdown": "2.2.1",
  24. "mocha": "9.1.3",
  25. "nyc": "15.1.0"
  26. },
  27. "files": [
  28. "History.md",
  29. "LICENSE",
  30. "Readme.md",
  31. "index.js"
  32. ],
  33. "engines": {
  34. "node": ">= 0.8"
  35. },
  36. "scripts": {
  37. "lint": "eslint .",
  38. "test": "mocha --check-leaks --reporter spec",
  39. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  40. "test-cov": "nyc --reporter=html --reporter=text npm test"
  41. }
  42. }