-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.43 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
{
"name": "safecookie",
"description": "Wrap the cookie libraries with a safer encrypt - decrypt function - should work with most libraries",
"version": "1.1.0",
"main": "index.js",
"module": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"unpkg": "index.min.js",
"scripts": {
"test": "mocha --reporter spec --recursive --timeout 60000",
"uglify": "uglifyjs --compress --mangle reserved=['$','require','exports'] index.js -o index.min.js",
"gitadd": "git add .",
"buildtsc": "tsc index.js --allowJs --emitDeclarationOnly --declaration --declarationMap --sourceMap",
"browsertest": "jasmine-browser-runner runSpecs --enable-chrome-browser-cloud-management"
},
"pre-commit": {
"run": [
"uglify",
"gitadd",
"test"
]
},
"pre-push": {
"run": [
"uglify",
"gitadd",
"test"
]
},
"keywords": [
"safe cookies",
"safe",
"cookies",
"safecookie",
"safe storage",
"safer cookies",
"safer storage",
"crypto function wrapper",
"encrypt - decrypt function wrapper",
"localStorage",
"cookies",
"safe password storage in database",
"browser-cookie-lite"
],
"author": "Ganesh Bhat <ganeshsurfs@gmail.com>",
"license": "MIT",
"devDependencies": {
"@splinetool/runtime": "^1.0.31",
"@types/chai": "^4.3.11",
"@types/eslint": "^8.56.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"chalk": "^4.1.2",
"esm": "^3.2.25",
"hasher-apis": "^0.2.7",
"jasmine": "^5.1.0",
"jasmine-browser-runner": "^2.3.0",
"jasmine-core": "^5.1.2",
"jsdom": "^23.2.0",
"live-server": "^1.2.2",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"react": "^18.2.0",
"react-cookie": "^7.0.0",
"react-cookies": "^0.1.1",
"shared-cookies": "^0.0.4",
"sinon": "^17.0.1",
"toughcookies": "^4.1.4",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4",
"unimported": "^1.31.1",
"universal-cookie-express": "^7.0.1",
"web-storage-express-cookies": "^1.0.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshkbhat/safe-cookies.git"
},
"bugs": {
"url": "https://github.com/ganeshkbhat/safe-cookies/issues"
},
"homepage": "https://github.com/ganeshkbhat/safe-cookies#readme"
}