package.json 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "memory-fs",
  3. "version": "0.4.1",
  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. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  15. "travis": "npm run cover -- --report lcovonly"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/webpack/memory-fs.git"
  20. },
  21. "keywords": [
  22. "fs",
  23. "memory"
  24. ],
  25. "author": "Tobias Koppers @sokra",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/webpack/memory-fs/issues"
  29. },
  30. "homepage": "https://github.com/webpack/memory-fs",
  31. "devDependencies": {
  32. "bl": "^1.0.0",
  33. "codecov.io": "^0.1.4",
  34. "coveralls": "^2.11.2",
  35. "istanbul": "^0.2.13",
  36. "mocha": "^1.20.1",
  37. "should": "^4.0.4"
  38. },
  39. "dependencies": {
  40. "errno": "^0.1.3",
  41. "readable-stream": "^2.0.1"
  42. }
  43. }