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

package.json « ignore-walk « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99d2c2e64de9df09e2f6b85dd5b01990a5f47901 (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
{
  "name": "ignore-walk",
  "version": "3.0.3",
  "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.",
  "main": "index.js",
  "devDependencies": {
    "mkdirp": "^0.5.1",
    "mutate-fs": "^1.1.0",
    "rimraf": "^2.6.1",
    "tap": "^14.6.9"
  },
  "scripts": {
    "test": "tap",
    "preversion": "npm test",
    "postversion": "npm publish",
    "postpublish": "git push origin --all; git push origin --tags"
  },
  "keywords": [
    "ignorefile",
    "ignore",
    "file",
    ".gitignore",
    ".npmignore",
    "glob"
  ],
  "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/isaacs/ignore-walk.git"
  },
  "files": [
    "index.js"
  ],
  "dependencies": {
    "minimatch": "^3.0.4"
  },
  "tap": {
    "jobs": 1
  }
}