UNPKG

1.4 kBJSONView Raw
1{
2 "name": "referrer-policy",
3 "author": "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)",
4 "description": "Middleware to set the Referrer-Policy HTTP header",
5 "version": "1.2.0",
6 "license": "MIT",
7 "keywords": [
8 "helmet",
9 "security",
10 "express",
11 "connect",
12 "referer",
13 "referrer",
14 "privacy"
15 ],
16 "homepage": "https://helmetjs.github.io/docs/referrer-policy/",
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/helmetjs/referrer-policy.git"
20 },
21 "bugs": "https://github.com/helmetjs/referrer-policy/issues",
22 "engines": {
23 "node": ">=4.0.0"
24 },
25 "main": "./dist/index.js",
26 "typings": "./dist/index.d.ts",
27 "files": [
28 "CHANGELOG.md",
29 "LICENSE",
30 "README.md",
31 "dist/index.js",
32 "dist/index.d.ts"
33 ],
34 "scripts": {
35 "pretest": "npm run lint",
36 "prepublishOnly": "npm run build",
37 "lint": "eslint --fix '**/*.ts'",
38 "test": "jest --config test/jest-config.json",
39 "clean": "rm -rf dist",
40 "build": "npm run clean && tsc"
41 },
42 "devDependencies": {
43 "@types/connect": "^3.4.32",
44 "@types/jest": "^24.0.11",
45 "@types/supertest": "^2.0.7",
46 "@typescript-eslint/eslint-plugin": "^1.7.0",
47 "@typescript-eslint/parser": "^1.7.0",
48 "connect": "^3.6.6",
49 "eslint": "^5.16.0",
50 "jest": "^24.7.1",
51 "supertest": "^3.4.2",
52 "ts-jest": "^24.0.2",
53 "typescript": "^3.4.5"
54 }
55}