UNPKG

1.38 kBJSONView Raw
1{
2 "name": "promise-batcher",
3 "version": "0.1.1",
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 "build": "npm run clean && npm run tslint && npm run tsc",
26 "clean": "rm -rf index.js index.d.ts test",
27 "test": "./node_modules/.bin/mocha test/*.js --reporter spec --colors",
28 "test-debug": "cross-env DEBUG=promise-batcher* npm test",
29 "tsc": "tsc -p ts",
30 "tslint": "tslint ts/**/*.ts"
31 },
32 "main": "index.js",
33 "typings": "index.d.ts",
34 "engines": {
35 "node": ">=4.0.0"
36 },
37 "dependencies": {
38 "debug": "^3.1.0"
39 },
40 "devDependencies": {
41 "@types/chai-as-promised": "^7.1.0",
42 "@types/debug": "^0.0.30",
43 "@types/mocha": "^2.2.43",
44 "@types/node": "^6.0.88",
45 "chai": "^4.1.2",
46 "chai-as-promised": "^7.1.1",
47 "cross-env": "^5.0.5",
48 "mocha": "^4.0.1",
49 "tslint": "^5.7.0",
50 "typescript": "^2.5.3"
51 },
52 "license": "MIT",
53 "public": true
54}