browser-storage-utilities
Version:
A front-end library that provides utility methods to facilitate CRUD operations to data stored in the browser, and more.
86 lines (85 loc) • 2.1 kB
JSON
{
"name": "browser-storage-utilities",
"version": "1.0.7",
"description": "A front-end library that provides utility methods to facilitate CRUD operations to data stored in the browser, and more.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "rm -rf ./dist && tsc --build ./tsconfig.json",
"build:w": "tsc --build ./tsconfig.json --watch",
"test": "NODE_ENV=test mocha -r ts-node/register tests/**/*.spec.ts",
"test:w": "NODE_ENV=test mocha -r ts-node/register --watch --watch-files src, tests/**/*.spec.ts",
"cover": "NODE_ENV=test nyc mocha tests/**/*.spec.ts"
},
"nyc": {
"include": [
"*.ts"
],
"exclude": [
"**/index.ts",
"**/*.d.ts",
"**/*.spec.ts"
],
"extension": [
".ts",
".json"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"lcov",
"text-summary",
"html"
],
"all": true,
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/AhmedAlatawi/Browser-Storage-Utilities.git"
},
"author": "Ahmed Alatawi",
"license": "MIT",
"bugs": {
"url": "https://github.com/AhmedAlatawi/Browser-Storage-Utilities/issues"
},
"homepage": "https://github.com/AhmedAlatawi/Browser-Storage-Utilities#readme",
"keywords": [
"javascript",
"typescript",
"browser",
"storage",
"localStorage",
"sessionStorage",
"CRUD",
"TTL(Time To Live)",
"observables",
"promises",
"angular",
"reactjs",
"Vuejs"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash": "^4.14.150",
"global": "^4.4.0",
"lodash": "^4.17.15",
"rxjs": "^6.5.5"
}
}