-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "@npm-packages-collection/safe-encrypted-storage",
"description": "An easy-to-use, encrypted web storage utility for securely storing and managing sensitive data in localStorage and sessionStorage.",
"author": "Eugene Yevhen Andruszczenko <eugene.andruszczenko@gmail.com>",
"contributors": [
"32teeth <eugene.andruszczenko@gmail.com> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/npm-packages-collection/safe-encrypted-storage.git"
},
"license": "MIT",
"version": "0.1.5",
"keywords": [
"safe-encrypted-storage",
"encryption",
"localStorage",
"sessionStorage",
"secure-storage",
"indexeddb",
"crypto",
"aes-gcm",
"secure-data",
"javascript",
"web-storage",
"npm-package"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"type": "module",
"scripts": {
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.4",
"fake-indexeddb": "^6.0.0",
"jsdom": "^25.0.1",
"mocha": "^9.1.3",
"sinon": "^19.0.2"
},
"bugs": {
"url": "https://github.com/npm-packages-collection/safe-encrypted-storage/issues"
},
"homepage": "https://github.com/npm-packages-collection/safe-encrypted-storage#readme",
"directories": {
"test": "test"
}
}