-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "chrome-cookies-secure",
"version": "2.1.1",
"description": "Extract encrypted Google Chrome cookies for a url on a Mac, Linux or Windows",
"types": "index.d.ts",
"keywords": [
"google",
"chrome",
"cookies",
"encrypted",
"curl",
"decrypt",
"encrypt",
"extract"
],
"main": "index.js",
"scripts": {
"test": "mocha tests/index.test.js -t 5000"
},
"author": "Bertrand Fan <[email protected]> (https://bert.org/), Reece Daniels <[email protected]>",
"license": "MIT",
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "https://github.com/bertrandom/chrome-cookies-secure.git"
},
"dependencies": {
"int": "^0.2.0",
"request": "^2.88.0",
"sqlite3": "^5.0.7",
"tldjs": "^1.5.1",
"tough-cookie": "^2.3.4"
},
"optionalDependencies": {
"keytar": "^7.9.0",
"win-dpapi": "^1.1.0"
},
"devDependencies": {
"@types/joi": "^14.3.1",
"joi": "^14.3.1",
"mocha": "^8.0.0"
},
"engines": {
"node": ">=12.18.4"
}
}