forked from cowboy/node-globule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 985 Bytes
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "globule",
"description": "An easy-to-use wildcard globbing library.",
"version": "1.3.4",
"homepage": "https://github.com/cowboy/node-globule",
"author": {
"name": "\"Cowboy\" Ben Alman",
"url": "http://benalman.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/cowboy/node-globule.git"
},
"bugs": {
"url": "https://github.com/cowboy/node-globule/issues"
},
"license": "MIT",
"main": "lib/globule",
"files": [
"lib"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "grunt"
},
"devDependencies": {
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt": "^1.6.1"
},
"keywords": [
"glob",
"file",
"match",
"mapping",
"expand",
"wildcard",
"pattern",
"sync",
"awesome"
],
"dependencies": {
"glob": "~7.1.1",
"lodash": "^4.17.21",
"minimatch": "~3.0.2"
}
}