addon-sdk/source/lib/method/package.json

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 {
     2   "name": "method",
     3   "id": "method",
     4   "version": "1.0.2",
     5   "description": "Functional polymorphic method dispatch",
     6   "keywords": [
     7     "method",
     8     "dispatch",
     9     "protocol",
    10     "polymorphism",
    11     "type dispatch"
    12   ],
    13   "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
    14   "homepage": "https://github.com/Gozala/method",
    15   "main": "./core.js",
    16   "repository": {
    17     "type": "git",
    18     "url": "https://github.com/Gozala/method.git",
    19     "web": "https://github.com/Gozala/method"
    20   },
    21   "bugs": {
    22     "url": "http://github.com/Gozala/method/issues/"
    23   },
    24   "devDependencies": {
    25     "test": "~0.x.0",
    26     "repl-utils": "~2.0.1",
    27     "phantomify": "~0.1.0"
    28   },
    29   "scripts": {
    30     "test": "npm run test-node && npm run test-browser",
    31     "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/browser.js",
    32     "test-node": "node ./test/common.js",
    33     "repl": "node node_modules/repl-utils"
    34   },
    35   "licenses": [
    36     {
    37       "type": "MIT",
    38       "url": "https://github.com/Gozala/method/License.md"
    39     }
    40   ]
    41 }

mercurial