You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1015 B
61 lines
1015 B
{ |
|
"name": "del", |
|
"version": "3.0.0", |
|
"description": "Delete files and folders", |
|
"license": "MIT", |
|
"repository": "sindresorhus/del", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=4" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava" |
|
}, |
|
"files": [ |
|
"index.js" |
|
], |
|
"keywords": [ |
|
"delete", |
|
"files", |
|
"folders", |
|
"directories", |
|
"del", |
|
"remove", |
|
"destroy", |
|
"trash", |
|
"unlink", |
|
"clean", |
|
"cleaning", |
|
"cleanup", |
|
"rm", |
|
"rmrf", |
|
"rimraf", |
|
"rmdir", |
|
"glob", |
|
"gulpfriendly", |
|
"file", |
|
"folder", |
|
"directory", |
|
"dir", |
|
"fs", |
|
"filesystem" |
|
], |
|
"dependencies": { |
|
"globby": "^6.1.0", |
|
"is-path-cwd": "^1.0.0", |
|
"is-path-in-cwd": "^1.0.0", |
|
"p-map": "^1.1.1", |
|
"pify": "^3.0.0", |
|
"rimraf": "^2.2.8" |
|
}, |
|
"devDependencies": { |
|
"ava": "*", |
|
"make-dir": "^1.0.0", |
|
"tempy": "^0.1.0", |
|
"xo": "*" |
|
} |
|
}
|
|
|