var-persist/package.json

39 lines
901 B
JSON

{
"name": "var-persist",
"version": "1.0.1",
"description": "Sync variables with the local/session storage using proxy objects & decorators",
"repository": {
"type": "git",
"url": "https://git.zakscode.com/ztimson/var-persist"
},
"author": "Zak Timson",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:docs",
"build:docs": "npx typedoc --readme none --out docs src/index.ts",
"test": "npx jest --verbose",
"test:coverage": "npx jest --verbose --coverage",
"watch": "npm run build && npx tsc --watch"
},
"keywords": [
"Decorator",
"LocalStorage",
"Persistance",
"SessionStorage",
"WebStorage"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}