UNPKG

867 BJSONView Raw
1{
2 "name": "cors",
3 "description": "Node.js CORS middleware",
4 "version": "2.8.5",
5 "author": "Troy Goode <troygoode@gmail.com> (https://github.com/troygoode/)",
6 "license": "MIT",
7 "keywords": [
8 "cors",
9 "express",
10 "connect",
11 "middleware"
12 ],
13 "repository": "expressjs/cors",
14 "main": "./lib/index.js",
15 "dependencies": {
16 "object-assign": "^4",
17 "vary": "^1"
18 },
19 "devDependencies": {
20 "after": "0.8.2",
21 "eslint": "2.13.1",
22 "express": "4.16.3",
23 "mocha": "5.2.0",
24 "nyc": "13.1.0",
25 "supertest": "3.3.0"
26 },
27 "files": [
28 "lib/index.js",
29 "CONTRIBUTING.md",
30 "HISTORY.md",
31 "LICENSE",
32 "README.md"
33 ],
34 "engines": {
35 "node": ">= 0.10"
36 },
37 "scripts": {
38 "test": "npm run lint && nyc --reporter=html --reporter=text mocha --require test/support/env",
39 "lint": "eslint lib test"
40 }
41}