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

package.json « libnpmfund « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f31317fca2f0d17193adfa127f429458f3c3037 (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": "libnpmfund",
  "version": "1.0.0",
  "files": [
    "index.js"
  ],
  "description": "Programmatic API for npm fund",
  "repository": "https://github.com/npm/libnpmfund",
  "keywords": [
    "npm",
    "npmcli",
    "libnpm",
    "cli",
    "git",
    "fund",
    "gitfund"
  ],
  "author": "npm Inc. <support@npmjs.com>",
  "contributors": [
    {
      "name": "Ruy Adorno",
      "url": "https://ruyadorno.com",
      "twitter": "ruyadorno"
    }
  ],
  "license": "ISC",
  "scripts": {
    "lint": "standard",
    "pretest": "npm run lint",
    "test": "tap",
    "snap": "tap",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags"
  },
  "tap": {
    "check-coverage": true
  },
  "standard": {
    "ignore": [
      "/tap-snapshots/"
    ]
  },
  "devDependencies": {
    "require-inject": "^1.4.4",
    "standard": "^14.3.4",
    "tap": "^14.10.7"
  },
  "dependencies": {
    "@npmcli/arborist": "^0.0.33 || ^1.x"
  }
}