-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1020 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
{
"name" : "rmdir",
"version" : "1.2.0",
"description": "Remove all files in the given path recursively",
"keywords" : [
"remove", "remove files", "remove all files", "remove path",
"remove dir", "rm -r", "rmdir", "remove files recursively"
],
"author" : "dreamerslab <[email protected]>",
"contributors": [
{ "name": "Aaron Larner" },
{ "name": "Glen R. Goodwin" },
{
"name" : "David Pate",
"email": "[email protected]",
"url" : "http://davidtpate.com"
},
{
"name" : "Radare",
"email": "[email protected]",
"url" : "http://www.radare.org/"
}
],
"dependencies": {
"node.flow" : "1.2.3"
},
"repository" : {
"type": "git",
"url" : "https://github.com/dreamerslab/node.rmdir.git"
},
"main" : "index",
"engines" : [ "node >= 0.8.0" ],
"licenses": [{
"type": "MIT",
"url" : "http://en.wikipedia.org/wiki/MIT_License"
}],
"scripts" : {
"test" : "node test/run.js"
}
}