33 lines
761 B
JSON
33 lines
761 B
JSON
{
|
|
"name": "memory-fs",
|
|
"version": "0.2.0",
|
|
"description": "A simple in-memory filesystem. Holds data in a javascript object.",
|
|
"main": "lib/MemoryFileSystem.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -R spec",
|
|
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/webpack/memory-fs.git"
|
|
},
|
|
"keywords": [
|
|
"fs",
|
|
"memory"
|
|
],
|
|
"author": "Tobias Koppers @sokra",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/webpack/memory-fs/issues"
|
|
},
|
|
"homepage": "https://github.com/webpack/memory-fs",
|
|
"devDependencies": {
|
|
"istanbul": "^0.2.13",
|
|
"mocha": "^1.20.1",
|
|
"should": "^4.0.4"
|
|
}
|
|
}
|