@ts-common/virtual-fs
Version:
Virtual File System
60 lines (59 loc) • 1.3 kB
JSON
{
"name": "@ts-common/virtual-fs",
"version": "1.1.0",
"description": "Virtual File System",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"test": "tsc && nyc mocha ./dist/test/test.js -t 300000",
"prepack": "npm install && tsc"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"dist/test/test.js"
]
},
"types": "dist/index.d.ts",
"files": [
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js.map",
"dist/index.ts",
"src/index.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/virtual-fs.git"
},
"keywords": [
"virtual",
"file",
"system"
],
"author": "Sergey Shandar",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-common/virtual-fs/issues"
},
"homepage": "https://github.com/ts-common/virtual-fs#readme",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"nyc": "^15.0.0",
"typescript": "^3.4.1"
},
"dependencies": {
"@ts-common/fs": "^1.1.0",
"@ts-common/iterator": "^1.1.0",
"@types/async-retry": "^1.4.1",
"@types/node-fetch": "^2.5.5",
"async-retry": "^1.3.1",
"node-fetch": "^2.6.0"
}
}