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

package.json « config « @npmcli « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83d8a349d224dce5e337cc0de282ef6e14a6b52e (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
{
  "name": "@npmcli/config",
  "version": "2.4.0",
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "description": "Configuration management for the npm cli",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/npm/config"
  },
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  "license": "ISC",
  "scripts": {
    "test": "tap",
    "snap": "tap",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "tap": {
    "check-coverage": true,
    "coverage-map": "map.js"
  },
  "devDependencies": {
    "tap": "^15.0.4"
  },
  "dependencies": {
    "ini": "^2.0.0",
    "mkdirp-infer-owner": "^2.0.0",
    "nopt": "^5.0.0",
    "semver": "^7.3.4",
    "walk-up-path": "^1.0.0"
  },
  "engines": {
    "node": ">=10"
  }
}