UNPKG

1.74 kBJSONView Raw
1{
2 "name": "counted-storage",
3 "version": "1.0.0",
4 "description": "Lightweight lib to work with the local storage implementing lifetime based on how many times the item was used",
5 "main": "./dist/counted-storage.js",
6 "files": [
7 "dist",
8 "src"
9 ],
10 "keywords": [
11 "localstorage",
12 "storage",
13 "lifetime",
14 "counted"
15 ],
16 "scripts": {
17 "contributors:generate": "all-contributors generate",
18 "contributors:add": "all-contributors add",
19 "lint": "eslint ./src --color",
20 "test": "jest",
21 "test:coverage": "jest --coverage",
22 "test:badges": "yarn test:coverage && make-coverage-badge && mv ./coverage/badge.svg ./coverage-badge.svg",
23 "build": "webpack --mode production",
24 "prepublish": "yarn lint && yarn test && yarn test:badges && yarn build"
25 },
26 "repository": "git@github.com:WendellAdriel/counted-storage.git",
27 "bugs": {
28 "url": "https://github.com/WendellAdriel/counted-storage/issues"
29 },
30 "homepage": "https://github.com/WendellAdriel/counted-storage#readme",
31 "author": "Wendell Adriel <wendelladriel.ti@gmail.com>",
32 "license": "MIT",
33 "devDependencies": {
34 "all-contributors-cli": "^5.2.1",
35 "babel-core": "^6.26.3",
36 "babel-eslint": "^8.2.5",
37 "babel-jest": "^23.2.0",
38 "babel-preset-env": "^1.7.0",
39 "eslint": "^5.0.1",
40 "eslint-config-standard": "^11.0.0",
41 "eslint-plugin-import": "^2.13.0",
42 "eslint-plugin-node": "^6.0.1",
43 "eslint-plugin-promise": "^3.8.0",
44 "eslint-plugin-standard": "^3.1.0",
45 "jest": "^23.3.0",
46 "make-coverage-badge": "^1.0.1",
47 "mock-local-storage": "^1.0.5",
48 "webpack": "^4.15.1",
49 "webpack-cli": "^3.0.8"
50 },
51 "jest": {
52 "coverageReporters": [
53 "json-summary"
54 ]
55 }
56}