Projekt

Obecné

Profil

Stáhnout (1.24 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "serve-static",
3
  "description": "Serve static files",
4
  "version": "1.14.1",
5
  "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
6
  "license": "MIT",
7
  "repository": "expressjs/serve-static",
8
  "dependencies": {
9
    "encodeurl": "~1.0.2",
10
    "escape-html": "~1.0.3",
11
    "parseurl": "~1.3.3",
12
    "send": "0.17.1"
13
  },
14
  "devDependencies": {
15
    "eslint": "5.16.0",
16
    "eslint-config-standard": "12.0.0",
17
    "eslint-plugin-import": "2.17.2",
18
    "eslint-plugin-markdown": "1.0.0",
19
    "eslint-plugin-node": "8.0.1",
20
    "eslint-plugin-promise": "4.1.1",
21
    "eslint-plugin-standard": "4.0.0",
22
    "istanbul": "0.4.5",
23
    "mocha": "6.1.4",
24
    "safe-buffer": "5.1.2",
25
    "supertest": "4.0.2"
26
  },
27
  "files": [
28
    "LICENSE",
29
    "HISTORY.md",
30
    "index.js"
31
  ],
32
  "engines": {
33
    "node": ">= 0.8.0"
34
  },
35
  "scripts": {
36
    "lint": "eslint --plugin markdown --ext js,md .",
37
    "test": "mocha --reporter spec --bail --check-leaks test/",
38
    "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
39
    "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
40
    "version": "node scripts/version-history.js && git add HISTORY.md"
41
  }
42
}
(5-5/5)