UNPKG

1.61 kBJSONView Raw
1{
2 "name": "promise-batcher",
3 "version": "1.0.0",
4 "description": "A module for batching individual promises to improve their collective efficiency.",
5 "keywords": [
6 "batching",
7 "promise",
8 "promises",
9 "concurrency",
10 "es6",
11 "async",
12 "await",
13 "queue"
14 ],
15 "bugs": {
16 "url": "https://github.com/baudzilla/promise-batcher/issues",
17 "email": "baudzila@gmail.com"
18 },
19 "author": "Wes van Vugt <baudzila@gmail.com>",
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/baudzilla/promise-batcher"
23 },
24 "scripts": {
25 "prepublish": "npm run build",
26 "build": "npm run clean && npm run tslint && npm run tsc",
27 "clean": "rm -rf index.js index.d.ts test",
28 "test": "./node_modules/.bin/mocha test/*.js --reporter spec --colors",
29 "test-debug": "cross-env DEBUG=promise-batcher* npm test",
30 "tsc": "tsc",
31 "tslint": "tslint ts/**/*.ts"
32 },
33 "main": "index.js",
34 "typings": "index.d.ts",
35 "engines": {
36 "node": ">=4.0.0"
37 },
38 "dependencies": {
39 "debug": "^3.1.0",
40 "defer-promise": "^1.0.1"
41 },
42 "devDependencies": {
43 "@types/chai-as-promised": "^7.1.0",
44 "@types/debug": "^0.0.30",
45 "@types/mocha": "^2.2.45",
46 "@types/node": "^8.5.2",
47 "chai": "^4.1.2",
48 "chai-as-promised": "^7.1.1",
49 "cross-env": "^5.1.3",
50 "mocha": "^4.0.1",
51 "tslint": "^5.8.0",
52 "typescript": "^2.6.2"
53 },
54 "license": "MIT",
55 "public": true
56}