diff 1__Development/6__Website/node_modules/express/package.json @ 5:e73fbbcb5fd2

Persisting basic graph works, starting to add persist of view hierarchy too
author Sean Halle <seanhalle@yahoo.com>
date Sun, 03 Aug 2014 23:38:15 -0700
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/1__Development/6__Website/node_modules/express/package.json	Sun Aug 03 23:38:15 2014 -0700
     1.3 @@ -0,0 +1,148 @@
     1.4 +{
     1.5 +  "name": "express",
     1.6 +  "description": "Fast, unopinionated, minimalist web framework",
     1.7 +  "version": "4.7.2",
     1.8 +  "author": {
     1.9 +    "name": "TJ Holowaychuk",
    1.10 +    "email": "tj@vision-media.ca"
    1.11 +  },
    1.12 +  "contributors": [
    1.13 +    {
    1.14 +      "name": "Aaron Heckmann",
    1.15 +      "email": "aaron.heckmann+github@gmail.com"
    1.16 +    },
    1.17 +    {
    1.18 +      "name": "Ciaran Jessup",
    1.19 +      "email": "ciaranj@gmail.com"
    1.20 +    },
    1.21 +    {
    1.22 +      "name": "Douglas Christopher Wilson",
    1.23 +      "email": "doug@somethingdoug.com"
    1.24 +    },
    1.25 +    {
    1.26 +      "name": "Guillermo Rauch",
    1.27 +      "email": "rauchg@gmail.com"
    1.28 +    },
    1.29 +    {
    1.30 +      "name": "Jonathan Ong",
    1.31 +      "email": "me@jongleberry.com"
    1.32 +    },
    1.33 +    {
    1.34 +      "name": "Roman Shtylman",
    1.35 +      "email": "shtylman+expressjs@gmail.com"
    1.36 +    },
    1.37 +    {
    1.38 +      "name": "Young Jae Sim",
    1.39 +      "email": "hanul@hanul.me"
    1.40 +    }
    1.41 +  ],
    1.42 +  "keywords": [
    1.43 +    "express",
    1.44 +    "framework",
    1.45 +    "sinatra",
    1.46 +    "web",
    1.47 +    "rest",
    1.48 +    "restful",
    1.49 +    "router",
    1.50 +    "app",
    1.51 +    "api"
    1.52 +  ],
    1.53 +  "repository": {
    1.54 +    "type": "git",
    1.55 +    "url": "git://github.com/visionmedia/express"
    1.56 +  },
    1.57 +  "license": "MIT",
    1.58 +  "dependencies": {
    1.59 +    "accepts": "~1.0.7",
    1.60 +    "buffer-crc32": "0.2.3",
    1.61 +    "debug": "1.0.4",
    1.62 +    "depd": "0.4.4",
    1.63 +    "escape-html": "1.0.1",
    1.64 +    "finalhandler": "0.1.0",
    1.65 +    "media-typer": "0.2.0",
    1.66 +    "methods": "1.1.0",
    1.67 +    "parseurl": "~1.2.0",
    1.68 +    "path-to-regexp": "0.1.3",
    1.69 +    "proxy-addr": "1.0.1",
    1.70 +    "range-parser": "1.0.0",
    1.71 +    "send": "0.7.2",
    1.72 +    "serve-static": "~1.4.2",
    1.73 +    "type-is": "~1.3.2",
    1.74 +    "vary": "0.1.0",
    1.75 +    "cookie": "0.1.2",
    1.76 +    "fresh": "0.2.2",
    1.77 +    "cookie-signature": "1.0.4",
    1.78 +    "merge-descriptors": "0.0.2",
    1.79 +    "qs": "0.6.6",
    1.80 +    "utils-merge": "1.0.0"
    1.81 +  },
    1.82 +  "devDependencies": {
    1.83 +    "after": "0.8.1",
    1.84 +    "istanbul": "0.3.0",
    1.85 +    "mocha": "~1.21.0",
    1.86 +    "should": "~4.0.4",
    1.87 +    "supertest": "~0.13.0",
    1.88 +    "connect-redis": "~2.0.0",
    1.89 +    "ejs": "~1.0.0",
    1.90 +    "marked": "0.3.2",
    1.91 +    "hjs": "~0.0.6",
    1.92 +    "body-parser": "~1.5.2",
    1.93 +    "cookie-parser": "~1.3.1",
    1.94 +    "express-session": "~1.7.2",
    1.95 +    "jade": "~1.5.0",
    1.96 +    "method-override": "~2.1.1",
    1.97 +    "morgan": "~1.2.2",
    1.98 +    "multiparty": "~3.3.1",
    1.99 +    "vhost": "2.0.0"
   1.100 +  },
   1.101 +  "engines": {
   1.102 +    "node": ">= 0.10.0"
   1.103 +  },
   1.104 +  "scripts": {
   1.105 +    "prepublish": "npm prune",
   1.106 +    "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
   1.107 +    "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
   1.108 +    "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/"
   1.109 +  },
   1.110 +  "bugs": {
   1.111 +    "url": "https://github.com/visionmedia/express/issues"
   1.112 +  },
   1.113 +  "homepage": "https://github.com/visionmedia/express",
   1.114 +  "_id": "express@4.7.2",
   1.115 +  "dist": {
   1.116 +    "shasum": "2cbae61efab6c2db72a547ff3bf380e637c08590",
   1.117 +    "tarball": "http://registry.npmjs.org/express/-/express-4.7.2.tgz"
   1.118 +  },
   1.119 +  "_from": "express@",
   1.120 +  "_npmVersion": "1.4.3",
   1.121 +  "_npmUser": {
   1.122 +    "name": "dougwilson",
   1.123 +    "email": "doug@somethingdoug.com"
   1.124 +  },
   1.125 +  "maintainers": [
   1.126 +    {
   1.127 +      "name": "tjholowaychuk",
   1.128 +      "email": "tj@vision-media.ca"
   1.129 +    },
   1.130 +    {
   1.131 +      "name": "jongleberry",
   1.132 +      "email": "jonathanrichardong@gmail.com"
   1.133 +    },
   1.134 +    {
   1.135 +      "name": "shtylman",
   1.136 +      "email": "shtylman@gmail.com"
   1.137 +    },
   1.138 +    {
   1.139 +      "name": "dougwilson",
   1.140 +      "email": "doug@somethingdoug.com"
   1.141 +    },
   1.142 +    {
   1.143 +      "name": "aredridel",
   1.144 +      "email": "aredridel@nbtsc.org"
   1.145 +    }
   1.146 +  ],
   1.147 +  "directories": {},
   1.148 +  "_shasum": "2cbae61efab6c2db72a547ff3bf380e637c08590",
   1.149 +  "_resolved": "https://registry.npmjs.org/express/-/express-4.7.2.tgz",
   1.150 +  "readme": "ERROR: No README data found!"
   1.151 +}