webstorage-decorators/package.json

42 lines
837 B
JSON
Raw Normal View History

2018-05-03 15:07:59 -04:00
{
"name": "webstorage-decorators",
2018-05-07 14:33:50 -04:00
"version": "1.0.1",
2018-05-03 15:07:59 -04:00
"description": "Decorators to sync variable to Local/Session storage",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
2018-05-03 15:15:20 -04:00
"build": "tsc",
"test": "jest"
2018-05-03 15:07:59 -04:00
},
"files": [
"lib"
],
"keywords": [
"LocalStorage",
"SessionStorage",
"WebStorage"
],
"author": "Zak Timson",
"license": "ISC",
2018-05-03 15:15:20 -04:00
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.spec\\.ts$"
},
2018-05-03 15:07:59 -04:00
"dependencies": {
"@types/crypto-js": "^3.1.39",
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
2018-05-03 15:15:20 -04:00
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
2018-05-03 15:07:59 -04:00
"typescript": "^2.8.3"
}
}