UNPKG

time-storage

Version:

Small library to work with the local storage implementing lifetime for its items

60 lines (59 loc) 1.74 kB
{ "name": "time-storage", "version": "1.0.0", "description": "Small library to work with the local storage implementing lifetime for its items", "main": "./dist/time-storage.js", "files": [ "dist", "src" ], "keywords": [ "localstorage", "storage", "time", "lifetime" ], "scripts": { "contributors:generate": "all-contributors generate", "contributors:add": "all-contributors add", "lint": "eslint ./src --color", "test": "jest", "test:coverage": "jest --coverage", "test:badges": "yarn test:coverage && make-coverage-badge && mv ./coverage/badge.svg ./coverage-badge.svg", "build": "webpack --mode production", "prepublish": "yarn lint && yarn test && yarn test:badges && yarn build" }, "repository": "git@github.com:WendellAdriel/time-storage.git", "bugs": { "url": "https://github.com/WendellAdriel/time-storage/issues" }, "homepage": "https://github.com/WendellAdriel/time-storage#readme", "author": "Wendell Adriel <wendelladriel.ti@gmail.com>", "license": "MIT", "devDependencies": { "all-contributors-cli": "^5.2.1", "babel-core": "^6.26.3", "babel-eslint": "^8.2.5", "babel-jest": "^23.2.0", "babel-preset-env": "^1.7.0", "eslint": "^5.0.1", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.13.0", "eslint-plugin-node": "^6.0.1", "eslint-plugin-promise": "^3.8.0", "eslint-plugin-standard": "^3.1.0", "jest": "^23.3.0", "make-coverage-badge": "^1.0.1", "mock-local-storage": "^1.0.5", "webpack": "^4.15.1", "webpack-cli": "^3.0.8" }, "dependencies": { "dayjs": "^1.7.2" }, "jest": { "coverageReporters": [ "json-summary" ] } }