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

package.json « fs « @npmcli « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b114b73d24e9e822763e7619991b968183304177 (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
{
  "name": "@npmcli/fs",
  "version": "1.0.0",
  "description": "filesystem utilities for the npm cli",
  "main": "lib/index.js",
  "files": [
    "lib",
    "bin"
  ],
  "scripts": {
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags",
    "snap": "tap",
    "test": "tap",
    "npmclilint": "npmcli-lint",
    "lint": "npm run npmclilint -- \"lib/**/*.*js\" \"test/**/*.*js\"",
    "lintfix": "npm run lint -- --fix",
    "posttest": "npm run lint --",
    "postsnap": "npm run lintfix --"
  },
  "keywords": [
    "npm",
    "oss"
  ],
  "author": "GitHub Inc.",
  "license": "ISC",
  "devDependencies": {
    "@npmcli/lint": "^1.0.1",
    "tap": "^15.0.9"
  },
  "dependencies": {
    "@gar/promisify": "^1.0.1",
    "semver": "^7.3.5"
  }
}