webstorage-decorators/package.json

35 lines
775 B
JSON
Raw Normal View History

2018-05-03 15:07:59 -04:00
{
"name": "webstorage-decorators",
2021-02-02 00:05:08 -05:00
"version": "3.2.6",
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",
2018-05-03 15:07:59 -04:00
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
2018-05-03 15:15:20 -04:00
"build": "tsc",
"test": "jest --verbose",
"watch": "npm run build && tsc --watch"
2018-05-03 15:07:59 -04:00
},
"files": [
"lib"
],
"keywords": [
2021-01-28 10:24:11 -05:00
"Decorators",
2018-05-03 15:07:59 -04:00
"LocalStorage",
"SessionStorage",
"WebStorage"
],
"author": "Zak Timson",
"license": "ISC",
"dependencies": {
2021-01-28 10:24:11 -05:00
"@types/crypto-js": "^4.0.1",
"crypto-js": "^4.0.0"
2018-05-03 15:07:59 -04:00
},
"devDependencies": {
2021-01-28 10:24:11 -05:00
"@types/jest": "^26.0.15",
"jest": "^26.6.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
2018-05-03 15:07:59 -04:00
}
}