@varasto/fs-storage
Version:
Varasto storage implementation that stores data to hard disk
66 lines (65 loc) • 1.65 kB
JSON
{
"name": "@varasto/fs-storage",
"version": "3.0.0",
"description": "Varasto storage implementation that stores data to hard disk",
"license": "MIT",
"keywords": [
"varasto"
],
"author": "Rauli Laine <rauli.laine@iki.fi>",
"main": "./dist/index.js",
"main:src": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"engines": {
"node": ">=18.0"
},
"homepage": "https://rauli.dev/varasto",
"repository": {
"type": "git",
"url": "https://github.com/RauliL/varasto"
},
"bugs": {
"url": "https://github.com/RauliL/varasto/issues"
},
"eslintConfig": {
"extends": "../../eslintrc.js"
},
"scripts": {
"clean": "rimraf './dist'",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint './src/*.ts'",
"format": "prettier --write './src'",
"format:check": "prettier --check './src'",
"test": "jest",
"test:coverage": "jest --coverage",
"prebuild": "$npm_execpath run clean",
"prepack": "$npm_execpath run build"
},
"dependencies": {
"@varasto/storage": "^5.0.0",
"glob": "^10.3.10",
"is-valid-slug": "^1.0.0",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/mock-fs": "^4.13.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"it-all": "^1.0.6",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^2.3.2",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"type-fest": "^4.3.3",
"typescript": "^5.2.2"
}
}