package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "vinyl-fs",
  3. "version": "3.0.3",
  4. "description": "Vinyl adapter for the file system.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Eric Schoffstall <yo@contra.io>",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  9. ],
  10. "repository": "gulpjs/vinyl-fs",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 0.10"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js",
  19. "lib"
  20. ],
  21. "scripts": {
  22. "lint": "eslint . && jscs index.js lib/ test/",
  23. "pretest": "npm run lint",
  24. "test": "mocha --async-only",
  25. "cover": "istanbul cover _mocha --report lcovonly",
  26. "coveralls": "npm run cover && istanbul-coveralls"
  27. },
  28. "dependencies": {
  29. "fs-mkdirp-stream": "^1.0.0",
  30. "glob-stream": "^6.1.0",
  31. "graceful-fs": "^4.0.0",
  32. "is-valid-glob": "^1.0.0",
  33. "lazystream": "^1.0.0",
  34. "lead": "^1.0.0",
  35. "object.assign": "^4.0.4",
  36. "pumpify": "^1.3.5",
  37. "readable-stream": "^2.3.3",
  38. "remove-bom-buffer": "^3.0.0",
  39. "remove-bom-stream": "^1.2.0",
  40. "resolve-options": "^1.1.0",
  41. "through2": "^2.0.0",
  42. "to-through": "^2.0.0",
  43. "value-or-function": "^3.0.0",
  44. "vinyl": "^2.0.0",
  45. "vinyl-sourcemap": "^1.1.0"
  46. },
  47. "devDependencies": {
  48. "eslint": "^1.10.3",
  49. "eslint-config-gulp": "^2.0.0",
  50. "expect": "^1.19.0",
  51. "istanbul": "^0.4.3",
  52. "istanbul-coveralls": "^1.0.3",
  53. "jscs": "^2.4.0",
  54. "jscs-preset-gulp": "^1.0.0",
  55. "mississippi": "^1.2.0",
  56. "mocha": "^3.5.0",
  57. "rimraf": "^2.6.1"
  58. },
  59. "keywords": [
  60. "gulp",
  61. "vinyl-adapter",
  62. "vinyl",
  63. "file",
  64. "file system",
  65. "fs",
  66. "streams"
  67. ]
  68. }