var-persist/package.json
ztimson 9757b7aaca
All checks were successful
Build / Build NPM Project (push) Successful in 16s
Build / Tag Version (push) Successful in 3s
Build / Publish (push) Successful in 3s
Updated documentation
2023-12-27 17:23:17 -05:00

36 lines
866 B
JSON

{
"name": "persist",
"version": "1.0.1",
"description": "Sync variables with the local/session storage using proxy objects & decorators",
"repository": "https://git.zakscode.com/ztimson/persistance",
"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"
]
}