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 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "depd",
  3. "description": "Deprecate all the things",
  4. "version": "1.1.2",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "keywords": [
  8. "deprecate",
  9. "deprecated"
  10. ],
  11. "repository": "dougwilson/nodejs-depd",
  12. "browser": "lib/browser/index.js",
  13. "devDependencies": {
  14. "benchmark": "2.1.4",
  15. "beautify-benchmark": "0.2.4",
  16. "eslint": "3.19.0",
  17. "eslint-config-standard": "7.1.0",
  18. "eslint-plugin-markdown": "1.0.0-beta.7",
  19. "eslint-plugin-promise": "3.6.0",
  20. "eslint-plugin-standard": "3.0.1",
  21. "istanbul": "0.4.5",
  22. "mocha": "~1.21.5"
  23. },
  24. "files": [
  25. "lib/",
  26. "History.md",
  27. "LICENSE",
  28. "index.js",
  29. "Readme.md"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "bench": "node benchmark/index.js",
  36. "lint": "eslint --plugin markdown --ext js,md .",
  37. "test": "mocha --reporter spec --bail test/",
  38. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --no-exit test/",
  39. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/"
  40. }
  41. }