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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| {
| "_args": [
| [
| "tough-cookie@4.0.0",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_development": true,
| "_from": "tough-cookie@4.0.0",
| "_id": "tough-cookie@4.0.0",
| "_inBundle": false,
| "_integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==",
| "_location": "/tough-cookie",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "tough-cookie@4.0.0",
| "name": "tough-cookie",
| "escapedName": "tough-cookie",
| "rawSpec": "4.0.0",
| "saveSpec": null,
| "fetchSpec": "4.0.0"
| },
| "_requiredBy": [
| "/jsdom"
| ],
| "_resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz",
| "_spec": "4.0.0",
| "_where": "/Users/tomas/PAM/PAMapp",
| "author": {
| "name": "Jeremy Stashewsky",
| "email": "jstash@gmail.com"
| },
| "bugs": {
| "url": "https://github.com/salesforce/tough-cookie/issues"
| },
| "contributors": [
| {
| "name": "Ivan Nikulin"
| },
| {
| "name": "Shivan Kaul Sahib"
| },
| {
| "name": "Clint Ruoho"
| },
| {
| "name": "Ian Livingstone"
| },
| {
| "name": "Andrew Waterman"
| },
| {
| "name": "Michael de Libero"
| },
| {
| "name": "Jonathan Stewmon"
| },
| {
| "name": "Miguel Roncancio"
| },
| {
| "name": "Sebastian Mayr"
| },
| {
| "name": "Alexander Savin"
| },
| {
| "name": "Lalit Kapoor"
| },
| {
| "name": "Sam Thompson"
| }
| ],
| "dependencies": {
| "psl": "^1.1.33",
| "punycode": "^2.1.1",
| "universalify": "^0.1.2"
| },
| "description": "RFC6265 Cookies and Cookie Jar for node.js",
| "devDependencies": {
| "async": "^2.6.2",
| "eslint": "^5.16.0",
| "eslint-config-prettier": "^4.2.0",
| "eslint-plugin-prettier": "^3.0.1",
| "genversion": "^2.1.0",
| "nyc": "^14.0.0",
| "prettier": "^1.17.0",
| "vows": "^0.8.2"
| },
| "engines": {
| "node": ">=6"
| },
| "files": [
| "lib"
| ],
| "homepage": "https://github.com/salesforce/tough-cookie",
| "keywords": [
| "HTTP",
| "cookie",
| "cookies",
| "set-cookie",
| "cookiejar",
| "jar",
| "RFC6265",
| "RFC2965"
| ],
| "license": "BSD-3-Clause",
| "main": "./lib/cookie",
| "name": "tough-cookie",
| "repository": {
| "type": "git",
| "url": "git://github.com/salesforce/tough-cookie.git"
| },
| "scripts": {
| "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js",
| "eslint": "eslint --env node --ext .js .",
| "format": "npm run eslint -- --fix",
| "prettier": "prettier '**/*.{json,ts,yaml,md}'",
| "test": "vows test/*_test.js",
| "version": "genversion lib/version.js && git add lib/version.js"
| },
| "version": "4.0.0"
| }
|
|