key-file-storage
Version:
Simple key-value storage directly on file system, maps each key to a separate file.
53 lines (52 loc) • 1.2 kB
JSON
{
"name": "key-file-storage",
"version": "2.3.3",
"description": "Simple key-value storage directly on file system, maps each key to a separate file.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "tsc test.ts && node test"
},
"repository": {
"type": "git",
"url": "https://github.com/ahs502/key-file-storage"
},
"keywords": [
"node",
"key",
"value",
"file",
"fs",
"store",
"storage",
"save",
"json",
"persist",
"persistent",
"data",
"structure",
"config",
"conf",
"configuration",
"settings",
"preferences",
"cache"
],
"author": "Hessamoddin A Shokravi <ahs502@gmail.com>",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/is-valid-path": "^0.1.0",
"fs-extra": "^10.0.0",
"is-valid-path": "^0.1.1",
"recur-fs": "^2.2.4"
},
"devDependencies": {
"colors": "^1.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
}
}