urltomarkdown/node_modules/on-finished/package.json

40 lines
1.0 KiB
JSON
Raw Normal View History

2022-01-08 17:05:05 +00:00
{
2022-01-08 17:17:05 +00:00
"name": "on-finished",
"description": "Execute a callback when a request closes, finishes, or errors",
2022-12-21 22:28:59 +00:00
"version": "2.4.1",
2022-01-08 17:05:05 +00:00
"contributors": [
2022-01-08 17:17:05 +00:00
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
2022-01-08 17:05:05 +00:00
],
2022-01-08 17:17:05 +00:00
"license": "MIT",
"repository": "jshttp/on-finished",
2022-01-08 17:05:05 +00:00
"dependencies": {
"ee-first": "1.1.1"
},
"devDependencies": {
2022-12-21 22:28:59 +00:00
"eslint": "7.32.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"eslint-plugin-standard": "4.1.0",
"mocha": "9.2.1",
"nyc": "15.1.0"
2022-01-08 17:05:05 +00:00
},
"engines": {
"node": ">= 0.8"
},
"files": [
"HISTORY.md",
"LICENSE",
"index.js"
],
"scripts": {
2022-12-21 22:28:59 +00:00
"lint": "eslint .",
2022-01-08 17:05:05 +00:00
"test": "mocha --reporter spec --bail --check-leaks test/",
2022-12-21 22:28:59 +00:00
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
2022-01-08 17:17:05 +00:00
}
2022-01-08 17:05:05 +00:00
}