web 3d图形渲染器
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.

41 lines
670 B

  1. {
  2. "name": "is-stream",
  3. "version": "2.0.0",
  4. "description": "Check if something is a Node.js stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-stream",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "stream",
  24. "type",
  25. "streams",
  26. "writable",
  27. "readable",
  28. "duplex",
  29. "transform",
  30. "check",
  31. "detect",
  32. "is"
  33. ],
  34. "devDependencies": {
  35. "@types/node": "^11.13.6",
  36. "ava": "^1.4.1",
  37. "tempy": "^0.3.0",
  38. "tsd": "^0.7.2",
  39. "xo": "^0.24.0"
  40. }
  41. }