var-persist/package.json
2023-12-19 22:32:47 -05:00

37 lines
918 B
JSON

{
"name": "perstistance",
"version": "1.0.0",
"description": "Sync variables with the local/session storage using proxy objects & decorators",
"repository": "https://git.zakscode.com/ztimson/persistance",
"author": "Zak Timson",
"license": "Apache 2.0",
"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",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}