Projekt

Obecné

Profil

Stáhnout (1.13 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "forwarded",
3
  "description": "Parse HTTP X-Forwarded-For header",
4
  "version": "0.1.2",
5
  "contributors": [
6
    "Douglas Christopher Wilson <doug@somethingdoug.com>"
7
  ],
8
  "license": "MIT",
9
  "keywords": [
10
    "x-forwarded-for",
11
    "http",
12
    "req"
13
  ],
14
  "repository": "jshttp/forwarded",
15
  "devDependencies": {
16
    "beautify-benchmark": "0.2.4",
17
    "benchmark": "2.1.4",
18
    "eslint": "3.19.0",
19
    "eslint-config-standard": "10.2.1",
20
    "eslint-plugin-import": "2.7.0",
21
    "eslint-plugin-node": "5.1.1",
22
    "eslint-plugin-promise": "3.5.0",
23
    "eslint-plugin-standard": "3.0.1",
24
    "istanbul": "0.4.5",
25
    "mocha": "1.21.5"
26
  },
27
  "files": [
28
    "LICENSE",
29
    "HISTORY.md",
30
    "README.md",
31
    "index.js"
32
  ],
33
  "engines": {
34
    "node": ">= 0.6"
35
  },
36
  "scripts": {
37
    "bench": "node benchmark/index.js",
38
    "lint": "eslint .",
39
    "test": "mocha --reporter spec --bail --check-leaks test/",
40
    "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
41
    "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
42
  }
43
}
(5-5/5)