34 lines
791 B
JSON
34 lines
791 B
JSON
{
|
|
"name": "webstorage-decorators",
|
|
"version": "4.3.0",
|
|
"description": "Decorators to sync class properties to Local/Session storage",
|
|
"repository": "https://github.com/ztimson/WebstorageDecorators",
|
|
"author": "Zak Timson",
|
|
"license": "ISC",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest --verbose",
|
|
"test:coverage": "npx jest --verbose --coverage",
|
|
"watch": "npm run build && tsc --watch"
|
|
},
|
|
"keywords": [
|
|
"Decorators",
|
|
"LocalStorage",
|
|
"SessionStorage",
|
|
"WebStorage"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.3",
|
|
"jest": "^29.3.1",
|
|
"jest-junit": "^15.0.0",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|