用工小程序前端代码
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.

48 lines
1.1 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "destroy",
  3. "description": "destroy a stream if possible",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "contributors": [
  12. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  13. ],
  14. "license": "MIT",
  15. "repository": "stream-utils/destroy",
  16. "devDependencies": {
  17. "eslint": "7.32.0",
  18. "eslint-config-standard": "14.1.1",
  19. "eslint-plugin-import": "2.25.4",
  20. "eslint-plugin-node": "11.1.0",
  21. "eslint-plugin-promise": "5.2.0",
  22. "eslint-plugin-standard": "4.1.0",
  23. "mocha": "9.2.2",
  24. "nyc": "15.1.0"
  25. },
  26. "engines": {
  27. "node": ">= 0.8",
  28. "npm": "1.2.8000 || >= 1.4.16"
  29. },
  30. "scripts": {
  31. "lint": "eslint .",
  32. "test": "mocha --reporter spec",
  33. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  34. "test-cov": "nyc --reporter=html --reporter=text npm test"
  35. },
  36. "files": [
  37. "index.js",
  38. "LICENSE"
  39. ],
  40. "keywords": [
  41. "stream",
  42. "streams",
  43. "destroy",
  44. "cleanup",
  45. "leak",
  46. "fd"
  47. ]
  48. }