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

package.json « libnpmversion « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 523f25f1d55c396563123f419435f12ebef1ece8 (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
{
  "name": "libnpmversion",
  "version": "2.0.1",
  "main": "lib/index.js",
  "files": [
    "lib/*.js"
  ],
  "description": "library to do the things that 'npm version' does",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/npm/libnpmversion"
  },
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  "license": "ISC",
  "scripts": {
    "lint": "standard",
    "lint:fix": "standard --fix",
    "test": "tap",
    "posttest": "npm run lint",
    "snap": "tap",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "standard": {
    "ignore": [
      "tap-snapshots"
    ]
  },
  "tap": {
    "coverage-map": "map.js",
    "check-coverage": true
  },
  "devDependencies": {
    "require-inject": "^1.4.4",
    "standard": "^16.0.3",
    "tap": "^14.11.0"
  },
  "dependencies": {
    "@npmcli/git": "^2.0.7",
    "@npmcli/run-script": "^2.0.0",
    "json-parse-even-better-errors": "^2.3.1",
    "semver": "^7.3.5",
    "stringify-package": "^1.0.1"
  },
  "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16"
  }
}