{ "_args": [ [ { "raw": "cookiejar@^2.1.0", "scope": null, "escapedName": "cookiejar", "name": "cookiejar", "rawSpec": "^2.1.0", "spec": ">=2.1.0 <3.0.0", "type": "range" }, "/home/jdaugherty/work/GT2/GT2-Android/node_modules/superagent" ] ], "_from": "cookiejar@>=2.1.0 <3.0.0", "_id": "cookiejar@2.1.1", "_inCache": true, "_location": "/cookiejar", "_nodeVersion": "7.5.0", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/cookiejar-2.1.1.tgz_1491398208379_0.6451425459235907" }, "_npmUser": { "name": "bradleymeck", "email": "bradley.meck@gmail.com" }, "_npmVersion": "4.1.2", "_phantomChildren": {}, "_requested": { "raw": "cookiejar@^2.1.0", "scope": null, "escapedName": "cookiejar", "name": "cookiejar", "rawSpec": "^2.1.0", "spec": ">=2.1.0 <3.0.0", "type": "range" }, "_requiredBy": [ "/superagent" ], "_resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", "_shasum": "41ad57b1b555951ec171412a81942b1e8200d34a", "_shrinkwrap": null, "_spec": "cookiejar@^2.1.0", "_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/superagent", "author": { "name": "bradleymeck" }, "bugs": { "url": "https://github.com/bmeck/node-cookiejar/issues" }, "dependencies": {}, "description": "simple persistent cookiejar system", "devDependencies": { "jshint": "^2.8.0" }, "directories": {}, "dist": { "shasum": "41ad57b1b555951ec171412a81942b1e8200d34a", "tarball": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz" }, "files": [ "cookiejar.js" ], "gitHead": "bdbae6a46e54e16db08214845f635e399fd737b0", "homepage": "https://github.com/bmeck/node-cookiejar#readme", "jshintConfig": { "node": true }, "license": "MIT", "main": "cookiejar.js", "maintainers": [ { "name": "andyburke", "email": "aburke@bitflood.org" }, { "name": "bradleymeck", "email": "bradley.meck@gmail.com" } ], "name": "cookiejar", "optionalDependencies": {}, "readme": "# CookieJar\n\nSimple robust cookie library\n\n## Exports\n\n### CookieAccessInfo(domain,path,secure,script)\n\n class to determine matching qualities of a cookie\n\n##### Properties\n\n* String domain - domain to match\n* String path - path to match\n* Boolean secure - access is secure (ssl generally)\n* Boolean script - access is from a script\n\n\n### Cookie(cookiestr_or_cookie, request_domain, request_path)\n\n turns input into a Cookie (singleton if given a Cookie)\n the `request_domain` argument is used to default the domain if it is not explicit in the cookie string \n the `request_path` argument is used to set the path if it is not explicit in a cookie String.\n\n explicit domains/paths will cascade, implied domains/paths must *exactly* match (see http://en.wikipedia.org/wiki/HTTP_cookie#Domain_and_Pat)\n\n##### Properties\n\n* String name - name of the cookie\n* String value - string associated with the cookie\n* String domain - domain to match (on a cookie a '.' at the start means a wildcard matching anything ending in the rest)\n* Boolean explicit_domain - if the domain was explicitly set via the cookie string\n* String path - base path to match (matches any path starting with this '/' is root)\n* Boolean explicit_path - if the path was explicitly set via the cookie string\n* Boolean noscript - if it should be kept from scripts\n* Boolean secure - should it only be transmitted over secure means\n* Number expiration_date - number of millis since 1970 at which this should be removed\n\n##### Methods\n\n* String toString() - the __set-cookie:__ string for this cookie\n* String toValueString() - the __cookie:__ string for this cookie\n* Cookie parse(cookiestr, request_domain, request_path) - parses the string onto this cookie or a new one if called directly\n* Boolean matches(access_info) - returns true if the access_info allows retrieval of this cookie\n* Boolean collidesWith(cookie) - returns true if the cookies cannot exist in the same space (domain and path match)\n\n\n### CookieJar()\n\n class to hold numerous cookies from multiple domains correctly\n\n##### Methods\n\n* Cookie setCookie(cookie, request_domain, request_path) - modify (or add if not already-existing) a cookie to the jar\n* Cookie[] setCookies(cookiestr_or_list, request_domain, request_path) - modify (or add if not already-existing) a large number of cookies to the jar\n* Cookie getCookie(cookie_name,access_info) - get a cookie with the name and access_info matching\n* Cookie[] getCookies(access_info) - grab all cookies matching this access_info\n", "readmeFilename": "readme.md", "repository": { "type": "git", "url": "git+https://github.com/bmeck/node-cookiejar.git" }, "scripts": { "test": "node tests/test.js" }, "version": "2.1.1" }