65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "async-done",
|
|
"version": "1.3.2",
|
|
"description": "Allows libraries to handle various caller provided asynchronous functions uniformly. Maps promises, observables, child processes and streams, and callbacks to callback style.",
|
|
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
|
|
"contributors": [
|
|
"Blaine Bublitz <blaine.bublitz@gmail.com>",
|
|
"Pawel Kozlowski <pkozlowski.opensource@gmail.com>",
|
|
"Matthew Podwysocki <matthew.podwysocki@gmail.com>",
|
|
"Charles Samborski <demurgos@demurgos.net>"
|
|
],
|
|
"repository": "gulpjs/async-done",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">= 0.10"
|
|
},
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"pretest": "npm run lint",
|
|
"test": "nyc mocha --async-only",
|
|
"test-types": "tsc -p test/types",
|
|
"azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"dependencies": {
|
|
"end-of-stream": "^1.1.0",
|
|
"once": "^1.3.2",
|
|
"process-nextick-args": "^2.0.0",
|
|
"stream-exhaust": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^9.3.0",
|
|
"coveralls": "github:phated/node-coveralls#2.x",
|
|
"eslint": "^2.13.1",
|
|
"eslint-config-gulp": "^3.0.1",
|
|
"expect": "^1.20.2",
|
|
"mocha": "^3.0.0",
|
|
"nyc": "^10.3.2",
|
|
"pumpify": "^1.3.6",
|
|
"rxjs": "^5.5.6",
|
|
"through2": "^2.0.0",
|
|
"typescript": "^2.6.2",
|
|
"when": "^3.7.3"
|
|
},
|
|
"keywords": [
|
|
"promises",
|
|
"callbacks",
|
|
"observables",
|
|
"streams",
|
|
"end",
|
|
"completion",
|
|
"complete",
|
|
"finish",
|
|
"done",
|
|
"async",
|
|
"error handling"
|
|
]
|
|
}
|