wishthis/node_modules/rimraf/package.json

33 lines
729 B
JSON
Raw Permalink Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-07 07:06:43 +00:00
"name": "rimraf",
2023-08-17 09:47:40 +00:00
"version": "3.0.2",
2022-04-07 07:06:43 +00:00
"main": "rimraf.js",
"description": "A deep deletion module for node (like `rm -rf`)",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"repository": "git://github.com/isaacs/rimraf.git",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
2023-08-17 09:47:40 +00:00
"postpublish": "git push origin --follow-tags",
2022-04-07 07:06:43 +00:00
"test": "tap test/*.js"
2022-01-21 08:28:41 +00:00
},
2022-04-07 07:06:43 +00:00
"bin": "./bin.js",
2022-01-21 08:28:41 +00:00
"dependencies": {
"glob": "^7.1.3"
},
"files": [
"LICENSE",
"README.md",
"bin.js",
"rimraf.js"
],
2022-04-07 07:06:43 +00:00
"devDependencies": {
"mkdirp": "^0.5.1",
"tap": "^12.1.1"
2023-08-17 09:47:40 +00:00
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
2022-04-07 07:06:43 +00:00
}
2022-01-21 08:28:41 +00:00
}