package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "memory-fs",
  3. "version": "0.5.0",
  4. "description": "A simple in-memory filesystem. Holds data in a javascript object.",
  5. "main": "lib/MemoryFileSystem.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "files": [
  10. "lib/"
  11. ],
  12. "scripts": {
  13. "test": "mocha",
  14. "lint": "eslint lib/*",
  15. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  16. "travis": "npm run cover -- --report lcovonly && npm run lint"
  17. },
  18. "engines": {
  19. "node": ">=4.3.0 <5.0.0 || >=5.10"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/webpack/memory-fs.git"
  24. },
  25. "keywords": [
  26. "fs",
  27. "memory"
  28. ],
  29. "author": "Tobias Koppers @sokra",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/webpack/memory-fs/issues"
  33. },
  34. "homepage": "https://github.com/webpack/memory-fs",
  35. "devDependencies": {
  36. "bl": "^1.0.0",
  37. "codecov.io": "^0.1.4",
  38. "coveralls": "^2.11.2",
  39. "eslint": "^4.0.0",
  40. "istanbul": "0.4.5",
  41. "mocha": "3.2.0",
  42. "should": "^4.0.4"
  43. },
  44. "dependencies": {
  45. "errno": "^0.1.3",
  46. "readable-stream": "^2.0.1"
  47. }
  48. }