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

package.json « npm-pick-manifest « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b4866cbf883265cb89a6febc260cc7f84835fa7 (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
{
  "name": "npm-pick-manifest",
  "version": "6.1.1",
  "description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.",
  "main": "index.js",
  "files": [
    "*.js"
  ],
  "scripts": {
    "coverage": "tap",
    "lint": "standard",
    "test": "tap",
    "posttest": "npm run lint",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "repository": "https://github.com/npm/npm-pick-manifest",
  "keywords": [
    "npm",
    "semver",
    "package manager"
  ],
  "author": {
    "name": "Kat Marchán",
    "email": "kzm@sykosomatic.org",
    "twitter": "maybekatz"
  },
  "license": "ISC",
  "dependencies": {
    "npm-install-checks": "^4.0.0",
    "npm-normalize-package-bin": "^1.0.1",
    "npm-package-arg": "^8.1.2",
    "semver": "^7.3.4"
  },
  "devDependencies": {
    "standard": "^14.3.1",
    "tap": "^14.11.0"
  },
  "tap": {
    "check-coverage": true
  }
}