-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 994 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
{
"name": "simple-glob",
"description": "Simplified globbing, same as Grunt",
"version": "0.2.0",
"author": "\"Cowboy\" Ben Alman (http://benalman.com/)",
"homepage": "https://github.com/jedmao/simple-glob",
"repository": {
"type": "git",
"url": "https://github.com/jedmao/simple-glob.git"
},
"bugs": {
"url": "https://github.com/jedmao/simple-glob/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jedmao/simple-glob/blob/master/LICENSE-MIT"
}
],
"main": "lib/api.js",
"scripts": {
"test": "grunt test"
},
"engines": {
"node": ">= 6"
},
"keywords": [
"glob",
"tool",
"grunt"
],
"dependencies": {
"glob": "^7.1.2",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.union": "^4.6.0"
},
"devDependencies": {
"grunt": "^1.0.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-watch": "^1.1.0"
}
}