-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 984 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
{
"version": "0.4.0",
"name": "mkdir-recursive",
"description": "make/remove (asynchronous/synchronous) directories recursively",
"keywords": [
"mkdir",
"rmdir",
"recursive"
],
"preferGlobal": false,
"homepage": "https://github.com/hex7c0/mkdir-recursive",
"author": {
"name": "hex7c0",
"email": "hex7c0@gmail.com",
"url": "https://hex7c0.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/hex7c0/mkdir-recursive.git"
},
"bugs": {
"url": "https://github.com/hex7c0/mkdir-recursive/issues",
"email": "hex7c0@gmail.com"
},
"main": "index.js",
"dependencies": {},
"devDependencies": {
"mocha": "~4.1",
"istanbul": "~0.4"
},
"engine-strict": true,
"engines": {
"node": ">=4"
},
"scripts": {
"prepare": "npm prune",
"test": "mocha --bail --check-leaks",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"license": "GPL-3.0"
}