CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json100 linesDownload Raw Back to express
1{2  "name": "express",3  "description": "Fast, unopinionated, minimalist web framework",4  "version": "5.2.1",5  "author": "TJ Holowaychuk <tj@vision-media.ca>",6  "contributors": [7    "Aaron Heckmann <aaron.heckmann+github@gmail.com>",8    "Ciaran Jessup <ciaranj@gmail.com>",9    "Douglas Christopher Wilson <doug@somethingdoug.com>",10    "Guillermo Rauch <rauchg@gmail.com>",11    "Jonathan Ong <me@jongleberry.com>",12    "Roman Shtylman <shtylman+expressjs@gmail.com>",13    "Young Jae Sim <hanul@hanul.me>"14  ],15  "license": "MIT",16  "repository": "expressjs/express",17  "homepage": "https://expressjs.com/",18  "funding": {19    "type": "opencollective",20    "url": "https://opencollective.com/express"21  },22  "keywords": [23    "express",24    "framework",25    "sinatra",26    "web",27    "http",28    "rest",29    "restful",30    "router",31    "app",32    "api"33  ],34  "dependencies": {35    "accepts": "^2.0.0",36    "body-parser": "^2.2.1",37    "content-disposition": "^1.0.0",38    "content-type": "^1.0.5",39    "cookie": "^0.7.1",40    "cookie-signature": "^1.2.1",41    "debug": "^4.4.0",42    "depd": "^2.0.0",43    "encodeurl": "^2.0.0",44    "escape-html": "^1.0.3",45    "etag": "^1.8.1",46    "finalhandler": "^2.1.0",47    "fresh": "^2.0.0",48    "http-errors": "^2.0.0",49    "merge-descriptors": "^2.0.0",50    "mime-types": "^3.0.0",51    "on-finished": "^2.4.1",52    "once": "^1.4.0",53    "parseurl": "^1.3.3",54    "proxy-addr": "^2.0.7",55    "qs": "^6.14.0",56    "range-parser": "^1.2.1",57    "router": "^2.2.0",58    "send": "^1.1.0",59    "serve-static": "^2.2.0",60    "statuses": "^2.0.1",61    "type-is": "^2.0.1",62    "vary": "^1.1.2"63  },64  "devDependencies": {65    "after": "0.8.2",66    "connect-redis": "^8.0.1",67    "cookie-parser": "1.4.7",68    "cookie-session": "2.1.1",69    "ejs": "^3.1.10",70    "eslint": "8.47.0",71    "express-session": "^1.18.1",72    "hbs": "4.2.0",73    "marked": "^15.0.3",74    "method-override": "3.0.0",75    "mocha": "^10.7.3",76    "morgan": "1.10.1",77    "nyc": "^17.1.0",78    "pbkdf2-password": "1.2.1",79    "supertest": "^6.3.0",80    "vhost": "~3.0.2"81  },82  "engines": {83    "node": ">= 18"84  },85  "files": [86    "LICENSE",87    "Readme.md",88    "index.js",89    "lib/"90  ],91  "scripts": {92    "lint": "eslint .",93    "lint:fix": "eslint . --fix",94    "test": "mocha --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",95    "test-ci": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test",96    "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test",97    "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"98  }99}100