Skip to content

Commit 2ecfd49

Browse files
committedJan 24, 2020
package updates
1 parent b6ea965 commit 2ecfd49

File tree

2 files changed

+3404
-9
lines changed

2 files changed

+3404
-9
lines changed
 

‎package-lock.json

+3,383
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+21-9
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,38 @@
22
"name": "mkdirp",
33
"description": "Recursively mkdir, like `mkdir -p`",
44
"version": "0.5.1",
5-
"author": "James Halliday <mail@substack.net> (http://substack.net)",
65
"main": "index.js",
76
"keywords": [
87
"mkdir",
9-
"directory"
8+
"directory",
9+
"make dir",
10+
"make",
11+
"dir",
12+
"recursive",
13+
"native"
1014
],
1115
"repository": {
1216
"type": "git",
13-
"url": "https://github.com/substack/node-mkdirp.git"
17+
"url": "https://github.com/isaacs/node-mkdirp.git"
1418
},
1519
"scripts": {
16-
"test": "tap test/*.js"
20+
"test": "tap",
21+
"snap": "tap",
22+
"preversion": "npm test",
23+
"postversion": "npm publish",
24+
"postpublish": "git push origin --follow-tags"
1725
},
18-
"dependencies": {
19-
"minimist": "0.0.8"
26+
"tap": {
27+
"check-coverage": true,
28+
"coverage-map": "map.js"
2029
},
2130
"devDependencies": {
22-
"mock-fs": "^3.7.0",
23-
"tap": "^5.4.2"
31+
"require-inject": "^1.4.4",
32+
"tap": "^14.10.6"
2433
},
2534
"bin": "bin/cmd.js",
26-
"license": "MIT"
35+
"license": "MIT",
36+
"engines": {
37+
"node": ">=10"
Has conversations. Original line has conversations.
38+
}
2739
}

0 commit comments

Comments
 (0)
Please sign in to comment.