Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.108.227
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
matchdep /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.jshintrc
229
B
-rw-rw-r--
2022-08-30 11:49
.npmignore
17
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
130
B
-rw-rw-r--
2022-08-30 11:49
LICENSE-MIT
1.03
KB
-rw-rw-r--
2022-08-30 11:49
README.md
1.87
KB
-rw-rw-r--
2022-08-30 11:49
package.json
937
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
# matchdep [](http://travis-ci.org/tkellen/js-matchdep) > Use [micromatch] to filter npm module dependencies by name. [](https://nodei.co/npm/matchdep/) ## Examples ```js var matchdep = require('matchdep'); // Filter dependencies (by autoloading nearest package.json) matchdep.filter('mini*'); // Filter devDependencies (with config string indicating file to be required) matchdep.filterDev('grunt-contrib-*', './package.json'); // Filter peerDependencies (with config string indicating file to be required) matchdep.filterPeer('foo-{bar,baz}', './some-other.json'); // Filter all dependencies (with explicit config provided) matchdep.filterAll('*', require('./yet-another.json')); // Filter all dependencies, exclude grunt (multiple matching patterns) matchdep.filterAll(['*','!grunt']); ``` ## Usage ```js filter(pattern, config) filterDev(pattern, config) filterPeer(pattern, config) filterAll(pattern, config) ``` ### pattern Type: `String|Array` Default: 'none' A [micromatch] compatible match pattern to filter dependencies. ### config Type: `String` or `Object` Default: Path to nearest package.json. If config is a string, matchdep will attempt to require it. If it is an object, it will be used directly. ## Release History * 2017-08-18 - v2.0.0 - Upgrade major versions of dependencies, Upgrade devDeps * 2016-02-09 - v1.0.1 - switch to [micromatch], remove [globule] * 2015-09-27 - v1.0.0 - throw when no package.json found, update dependencies, remove node 0.8 support * 2013-10-09 - v0.3.0 - support multiple pattern matches using [globule] * 2013-10-08 - v0.2.0 - refactor and support filtering peerDependencies * 2012-11-27 - v0.1.0 - initial release [globule]: https://github.com/cowboy/node-globule [micromatch]: https://github.com/jonschlinkert/micromatch