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

package.json « libnpmdiff « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa13954c630101f6c87da9d5d4163cf32b5006be (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
  "name": "libnpmdiff",
  "version": "2.0.4",
  "description": "The registry diff",
  "repository": "https://github.com/npm/libnpmdiff",
  "files": [
    "index.js",
    "lib"
  ],
  "engines": {
    "node": ">=10"
  },
  "keywords": [
    "npm",
    "npmcli",
    "libnpm",
    "cli",
    "diff"
  ],
  "author": "GitHub Inc.",
  "contributors": [
    {
      "name": "Ruy Adorno",
      "url": "https://ruyadorno.com",
      "twitter": "ruyadorno"
    }
  ],
  "license": "ISC",
  "scripts": {
    "eslint": "eslint",
    "lint": "npm run eslint -- index.js \"lib/**/*.js\" \"test/*.js\"",
    "lintfix": "npm run lint -- --fix",
    "test": "tap test/*.js",
    "posttest": "npm run lint",
    "snap": "tap test/*.js",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "tap": {
    "check-coverage": true
  },
  "standard": {
    "ignore": [
      "/tap-snapshots/"
    ]
  },
  "devDependencies": {
    "eslint": "^7.18.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^5.0.0",
    "tap": "^14.11.0"
  },
  "dependencies": {
    "@npmcli/disparity-colors": "^1.0.1",
    "@npmcli/installed-package-contents": "^1.0.7",
    "binary-extensions": "^2.2.0",
    "diff": "^5.0.0",
    "minimatch": "^3.0.4",
    "npm-package-arg": "^8.1.1",
    "pacote": "^11.3.0",
    "tar": "^6.1.0"
  }
}