Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « lru-cache « node_modules « make-fetch-happen « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae92116975dc965fc0bb62306444b471948c82c8 (plain)
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
{
  "name": "lru-cache",
  "description": "A cache object that deletes the least-recently-used items.",
  "version": "7.4.0",
  "author": "Isaac Z. Schlueter <i@izs.me>",
  "keywords": [
    "mru",
    "lru",
    "cache"
  ],
  "scripts": {
    "prepare": "webpack-cli -o bundle ./index.js --node-env production",
    "build": "npm run prepare",
    "presize": "npm run prepare",
    "test": "tap",
    "snap": "tap",
    "size": "size-limit",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "main": "index.js",
  "browser": "./bundle/main.js",
  "exports": {
    ".": "./index.js",
    "./browser": "./bundle/main.js"
  },
  "repository": "git://github.com/isaacs/node-lru-cache.git",
  "devDependencies": {
    "@size-limit/preset-small-lib": "^7.0.8",
    "benchmark": "^2.1.4",
    "size-limit": "^7.0.8",
    "tap": "^15.1.6",
    "webpack-cli": "^4.9.2"
  },
  "license": "ISC",
  "files": [
    "index.js",
    "bundle"
  ],
  "engines": {
    "node": ">=12"
  },
  "tap": {
    "coverage-map": "map.js"
  },
  "size-limit": [
    {
      "path": "./bundle/main.js"
    }
  ]
}