Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
1 {
2 "name": "diffpatcher",
3 "id": "diffpatcher",
4 "version": "1.2.0",
5 "description": "Utilities for diff-ing & patch-ing hashes",
6 "keywords": [
7 "diff", "patch", "rebase", "hash", "changes", "versions"
8 ],
9 "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
10 "homepage": "https://github.com/Gozala/diffpatcher",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/Gozala/diffpatcher.git",
14 "web": "https://github.com/Gozala/diffpatcher"
15 },
16 "bugs": {
17 "url": "http://github.com/Gozala/diffpatcher/issues/"
18 },
19 "dependencies": {
20 "method": "~2.0.0"
21 },
22 "devDependencies": {
23 "test": "~0.x.0",
24 "phantomify": "~0.x.0",
25 "retape": "~0.x.0",
26 "tape": "~0.1.5"
27 },
28 "main": "./index.js",
29 "scripts": {
30 "test": "npm run test-node && npm run test-browser",
31 "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/common.js",
32 "test-node": "node ./test/common.js",
33 "test-tap": "node ./test/tap.js"
34 },
35 "testling": {
36 "files": "test/tap.js",
37 "browsers": [
38 "ie/9..latest",
39 "chrome/25..latest",
40 "firefox/20..latest",
41 "safari/6..latest",
42 "opera/11.0..latest",
43 "iphone/6..latest",
44 "ipad/6..latest",
45 "android-browser/4.2..latest"
46 ]
47 },
48 "licenses": [
49 {
50 "type": "MIT",
51 "url": "https://github.com/Gozala/diffpatcher/License.md"
52 }
53 ]
54 }