Projekt

Obecné

Profil

Stáhnout (1.28 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "compressible",
3
  "description": "Compressible Content-Type / mime checking",
4
  "version": "2.0.18",
5
  "contributors": [
6
    "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
    "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
8
    "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)"
9
  ],
10
  "license": "MIT",
11
  "repository": "jshttp/compressible",
12
  "keywords": [
13
    "compress",
14
    "gzip",
15
    "mime",
16
    "content-type"
17
  ],
18
  "dependencies": {
19
    "mime-db": ">= 1.43.0 < 2"
20
  },
21
  "devDependencies": {
22
    "eslint": "6.8.0",
23
    "eslint-config-standard": "14.1.0",
24
    "eslint-plugin-import": "2.19.1",
25
    "eslint-plugin-markdown": "1.0.1",
26
    "eslint-plugin-node": "11.0.0",
27
    "eslint-plugin-promise": "4.2.1",
28
    "eslint-plugin-standard": "4.0.1",
29
    "mocha": "7.0.0",
30
    "nyc": "15.0.0"
31
  },
32
  "engines": {
33
    "node": ">= 0.6"
34
  },
35
  "files": [
36
    "HISTORY.md",
37
    "LICENSE",
38
    "README.md",
39
    "index.js"
40
  ],
41
  "scripts": {
42
    "lint": "eslint --plugin markdown --ext js,md .",
43
    "test": "mocha --reporter spec --bail --check-leaks test/",
44
    "test-cov": "nyc --reporter=html --reporter=text npm test",
45
    "test-travis": "nyc --reporter=text npm test",
46
    "version": "node scripts/version-history.js && git add HISTORY.md"
47
  }
48
}
(5-5/5)