package.json
1 { 2 "name": "picomatch", 3 "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", 4 "version": "2.3.0", 5 "homepage": "https://github.com/micromatch/picomatch", 6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)", 7 "funding": "https://github.com/sponsors/jonschlinkert", 8 "repository": "micromatch/picomatch", 9 "bugs": { 10 "url": "https://github.com/micromatch/picomatch/issues" 11 }, 12 "license": "MIT", 13 "files": [ 14 "index.js", 15 "lib" 16 ], 17 "main": "index.js", 18 "engines": { 19 "node": ">=8.6" 20 }, 21 "scripts": { 22 "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", 23 "mocha": "mocha --reporter dot", 24 "test": "npm run lint && npm run mocha", 25 "test:ci": "npm run test:cover", 26 "test:cover": "nyc npm run mocha" 27 }, 28 "devDependencies": { 29 "eslint": "^6.8.0", 30 "fill-range": "^7.0.1", 31 "gulp-format-md": "^2.0.0", 32 "mocha": "^6.2.2", 33 "nyc": "^15.0.0", 34 "time-require": "github:jonschlinkert/time-require" 35 }, 36 "keywords": [ 37 "glob", 38 "match", 39 "picomatch" 40 ], 41 "nyc": { 42 "reporter": [ 43 "html", 44 "lcov", 45 "text-summary" 46 ] 47 }, 48 "verb": { 49 "toc": { 50 "render": true, 51 "method": "preWrite", 52 "maxdepth": 3 53 }, 54 "layout": "empty", 55 "tasks": [ 56 "readme" 57 ], 58 "plugins": [ 59 "gulp-format-md" 60 ], 61 "lint": { 62 "reflinks": true 63 }, 64 "related": { 65 "list": [ 66 "braces", 67 "micromatch" 68 ] 69 }, 70 "reflinks": [ 71 "braces", 72 "expand-brackets", 73 "extglob", 74 "fill-range", 75 "micromatch", 76 "minimatch", 77 "nanomatch", 78 "picomatch" 79 ] 80 } 81 }