@mewters/smart-storage
Version:
A JavaScript/TypeScript library designed to simplify working with localStorage, sessionStorage, and cookies by offering automatic object conversion and consistent API.
128 lines (127 loc) • 3.37 kB
JSON
{
"name": "@mewters/smart-storage",
"version": "1.0.0",
"description": "A JavaScript/TypeScript library designed to simplify working with localStorage, sessionStorage, and cookies by offering automatic object conversion and consistent API.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"▆▅▃▂ DEV TOOLS ▂▃▅▆": "",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src/ --fix",
"clean": "rm -rf ./lib/",
"cm": "cz",
"▚▚▚▚▚ TEST ▞▞▞▞▞": "",
"test:watch": "jest --watch",
"test": "jest --coverage",
"▙▃▃▃▃ BUILD ▃▃▃▃▟": "",
"build": "tsc --project tsconfig.build.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mewters/smart-storage.git"
},
"license": "MIT",
"author": {
"name": "Akira Hanashiro",
"email": "hanashiro@users.noreply.github.com",
"url": "https://github.com/hanashiro"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"localStorage",
"sessionStorage",
"cookies",
"storage",
"smart-storage",
"smart",
"storage",
"javascript",
"typescript",
"mewters"
],
"bugs": {
"url": "https://github.com/mewters/smart-storage/issues"
},
"homepage": "https://github.com/mewters/smart-storage#readme",
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^27.5.2",
"@types/node": "^12.20.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.2.0",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1",
"semantic-release": "^21.0.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
}
}