-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.01 KB
/
package.json
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
{
"name": "get-files-matching-glob",
"version": "1.0.4",
"description": "Takes a glob pattern as argument, checks the cache to see if data has already been requested for this pattern. If there's cached data, returns it. If not, returns the matching files. Throws an exception if no files match the glob pattern or if the argument passed to the glob pattern parameter is not a string.",
"main": "src/getFilesMatchingGlob.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sformisano/get-files-matching-glob.git"
},
"author": "Salvatore Formisano",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sformisano/get-files-matching-glob/issues"
},
"homepage": "https://github.com/sformisano/get-files-matching-glob#readme",
"dependencies": {
"glob": "^7.1.2",
"lodash": "^4.17.10"
},
"devDependencies": {
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"rewire": "^4.0.1"
}
}