-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
99 lines (99 loc) · 2.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "localstorage-slim",
"title": "localstorage-slim",
"description": "An ultra slim localstorage wrapper with optional support for ttl and encryption",
"version": "2.7.1",
"homepage": "https://github.com/digitalfortress-tech/localstorage-slim",
"license": "MIT",
"scripts": {
"dev": "npm run server -- --mode development --progress",
"prod": "npm run server -- --mode production",
"watch": "npm run dev -- --watch",
"server": "webpack",
"tag": "npm version minor --no-git-tag-version && npm run prod && PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git commit -am \"$PACKAGE_VERSION release\" && git tag v$PACKAGE_VERSION",
"test": "jest --verbose",
"lint": "eslint ./src --ext .ts --fix",
"copy-typescript-definitions": "copyfiles -u 1 \"src/**/*.d.ts\" dist"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
"^.+\\.(ts|tsx)?$": "ts-jest"
}
},
"author": {
"name": "Niket Pathak",
"email": "[email protected]",
"url": "https://niketpathak.com"
},
"browser": "dist/localstorage-slim.js",
"main": "dist/localstorage-slim.js",
"types": "./dist/ls.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/digitalfortress-tech/localstorage-slim"
},
"bugs": {
"url": "https://github.com/digitalfortress-tech/localstorage-slim/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/digitalfortress-tech/localstorage-slim/blob/master/LICENSE"
}
],
"files": [
"dist/"
],
"keywords": [
"localstorage",
"localstorage-ttl",
"ttl-localstorage",
"lscache",
"ls-cache",
"encrypt-localstorage",
"localstorage-encrypt",
"localstorage encrypt",
"localstorage encryption",
"localstorage-with-ttl",
"localstorage with ttl",
"localstorage-expires",
"localstorage expires",
"localstorage wrapper",
"lean localstorage",
"tiny localstorage",
"mini localstorage",
"slim localstorage",
"localstorage-slim.js",
"secure-ls",
"secure ls",
"encrypt-ls",
"encrypt ls",
"encrypt localstorage",
"encrypt-localstorage"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"copyfiles": "^2.4.1",
"crypto-js": "^4.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"ts-jest": "^26.4.4",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}