webstorage-decorators/package.json

34 lines
791 B
JSON
Raw Normal View History

2018-05-03 15:07:59 -04:00
{
"name": "webstorage-decorators",
2023-03-20 16:42:32 -04:00
"version": "4.3.0",
2021-01-28 10:24:11 -05:00
"description": "Decorators to sync class properties to Local/Session storage",
2021-02-01 23:56:05 -05:00
"repository": "https://github.com/ztimson/WebstorageDecorators",
2023-03-20 16:42:32 -04:00
"author": "Zak Timson",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
2018-05-03 15:07:59 -04:00
"scripts": {
2018-05-03 15:15:20 -04:00
"build": "tsc",
"test": "jest --verbose",
2022-09-23 11:40:46 -04:00
"test:coverage": "npx jest --verbose --coverage",
"watch": "npm run build && tsc --watch"
2018-05-03 15:07:59 -04:00
},
"keywords": [
2021-01-28 10:24:11 -05:00
"Decorators",
2018-05-03 15:07:59 -04:00
"LocalStorage",
"SessionStorage",
"WebStorage"
],
2021-05-15 19:57:12 -04:00
"dependencies": {},
2018-05-03 15:07:59 -04:00
"devDependencies": {
2023-03-20 16:42:32 -04:00
"@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"
]
2018-05-03 15:07:59 -04:00
}