package.json 1.63 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "name": "helmet",
  "author": "Adam Baldwin <adam@npmjs.com> (https://evilpacket.net)",
  "contributors": [
    "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)",
    "Ameen Abdeen <ameen.abdeen.se@gmail.com>"
  ],
  "description": "help secure Express/Connect apps with various HTTP headers",
  "version": "4.6.0",
  "keywords": [
    "express",
    "security",
    "headers"
  ],
  "homepage": "https://helmetjs.github.io/",
  "bugs": {
    "url": "https://github.com/helmetjs/helmet/issues",
    "email": "me@evanhahn.com"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/helmetjs/helmet.git"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "devDependencies": {
    "@types/connect": "^3.4.34",
    "@types/jest": "^26.0.22",
    "@types/supertest": "^2.0.11",
    "@typescript-eslint/eslint-plugin": "^4.21.0",
    "@typescript-eslint/parser": "^4.21.0",
    "connect": "^3.7.0",
    "eslint": "^7.24.0",
    "jest": "^26.6.3",
    "prettier": "^2.2.1",
    "supertest": "^6.1.3",
    "ts-jest": "^26.5.4",
    "typescript": "^4.2.4"
  },
  "scripts": {
    "pretest": "npm run lint",
    "prepublishOnly": "npm run build",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint \"**/*.ts\"",
    "lint:prettier": "prettier --check \"**/*{md,js,json,ts}\"",
    "format": "prettier --write \"**/*{md,js,json,ts}\"",
    "clean": "node ./bin/clean.js",
    "build": "npm run clean && tsc && npm run format",
    "build-middleware-package": "npm run build && node ./bin/build-middleware-package.js",
    "test": "jest"
  },
  "license": "MIT",
  "types": "dist/index.d.ts",
  "main": "dist/index"
}