UNPKG

1.38 kBJSONView Raw
1{
2 "name": "promise-queue-manager",
3 "version": "1.0.3",
4 "description": "A queue manager for concurrent promise execution",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "scripts": {
8 "lint": "eslint src/** --ext .ts",
9 "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha",
10 "build": "tsc"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/gustavolaux/promise-queue-manager.git"
15 },
16 "keywords": [
17 "promise",
18 "queue",
19 "promise-queue"
20 ],
21 "author": {
22 "name": "Gustavo Laux",
23 "url": "https://gustavolaux.com.br",
24 "email": "contact@gustavolaux.com.br"
25 },
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/gustavolaux/promise-queue-manager/issues"
29 },
30 "homepage": "https://github.com/gustavolaux/promise-queue-manager#readme",
31 "devDependencies": {
32 "@babel/core": "7.6.4",
33 "@babel/preset-env": "7.6.3",
34 "@babel/preset-typescript": "7.6.0",
35 "@types/mocha": "8.2.1",
36 "@types/node": "13.9.3",
37 "@typescript-eslint/eslint-plugin": "2.3.1",
38 "@typescript-eslint/parser": "2.3.1",
39 "eslint": "6.8.0",
40 "eslint-config-airbnb-base": "14.1.0",
41 "eslint-plugin-import": "2.20.1",
42 "eslint-plugin-promise": "4.2.1",
43 "eslint-plugin-standard": "4.0.1",
44 "mocha": "8.3.0",
45 "ts-node": "9.1.1",
46 "typescript": "3.6.3"
47 }
48}