package.json
 1  {
 2      "name"            : "difflib"
 3    , "version"         : "0.2.4"
 4    , "description"     : "text diff library ported from Python's difflib module"
 5    , "homepage"        : "https://github.com/qiao/difflib.js"
 6    , "keywords"        : ["diff"]
 7    , "author"          : "Xueqiao Xu <xueqiaoxu@gmail.com>"
 8    , "main"            : "./index.js"
 9    , "dependencies"    : {
10        "heap"            : ">= 0.2.0"
11    }
12    , "devDependencies" : {
13        "coffee-script"   : ">= 1.3.0"
14      , "mocha"           : ">= 1.0.1"
15      , "should"          : ">= 0.6.0"
16      , "browserify"      : ">= 1.10.4"
17      , "uglify-js"       : ">= 1.2.5"
18    }
19    , "repository"      : {
20        "type"          : "git"
21      , "url"           : "git://github.com/qiao/difflib.js.git"
22    }
23    , "licenses"        : [{
24        "type"          :  "PSF"
25      , "url"           : "http://docs.python.org/license.html"
26    }]
27  }