minimatch 3.0.3 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -2,25 +2,26 @@
|
|
|
2
2
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
|
|
3
3
|
"name": "minimatch",
|
|
4
4
|
"description": "a glob matcher in javascript",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.4",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git://github.com/isaacs/minimatch.git"
|
|
9
9
|
},
|
|
10
10
|
"main": "minimatch.js",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
12
|
+
"test": "tap test/*.js --cov",
|
|
13
|
+
"preversion": "npm test",
|
|
14
|
+
"postversion": "npm publish",
|
|
15
|
+
"postpublish": "git push origin --all; git push origin --tags"
|
|
14
16
|
},
|
|
15
17
|
"engines": {
|
|
16
18
|
"node": "*"
|
|
17
19
|
},
|
|
18
20
|
"dependencies": {
|
|
19
|
-
"brace-expansion": "^1.
|
|
21
|
+
"brace-expansion": "^1.1.7"
|
|
20
22
|
},
|
|
21
23
|
"devDependencies": {
|
|
22
|
-
"
|
|
23
|
-
"tap": "^5.6.0"
|
|
24
|
+
"tap": "^10.3.2"
|
|
24
25
|
},
|
|
25
26
|
"license": "ISC",
|
|
26
27
|
"files": [
|