wishthis/node_modules/graceful-fs/package.json

54 lines
1 KiB
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-07 13:41:52 +00:00
"name": "graceful-fs",
2022-01-21 08:28:41 +00:00
"description": "A drop-in replacement for fs, making various improvements.",
2023-08-17 09:47:40 +00:00
"version": "4.2.11",
2022-04-07 13:41:52 +00:00
"repository": {
"type": "git",
"url": "https://github.com/isaacs/node-graceful-fs"
2022-01-21 08:28:41 +00:00
},
2022-04-07 13:41:52 +00:00
"main": "graceful-fs.js",
2022-01-21 08:28:41 +00:00
"directories": {
"test": "test"
},
2022-04-07 13:41:52 +00:00
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags",
"test": "nyc --silent node test.js | tap -c -",
"posttest": "nyc report"
},
2022-01-21 08:28:41 +00:00
"keywords": [
"fs",
"module",
"reading",
"retry",
"retries",
"queue",
"error",
"errors",
"handling",
"EMFILE",
"EAGAIN",
"EINVAL",
"EPERM",
"EACCESS"
],
"license": "ISC",
2022-04-07 13:41:52 +00:00
"devDependencies": {
"import-fresh": "^2.0.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
2023-08-17 09:47:40 +00:00
"tap": "^16.3.4"
2022-02-23 16:41:13 +00:00
},
2022-04-07 13:41:52 +00:00
"files": [
"fs.js",
"graceful-fs.js",
"legacy-streams.js",
"polyfills.js",
"clone.js"
2023-08-17 09:47:40 +00:00
],
"tap": {
"reporter": "classic"
}
2022-01-21 08:28:41 +00:00
}