-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "promise-queue-manager",
"version": "3.0.5",
"description": "A queue manager for concurrent promise execution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/** --ext .ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/gustavolaux/promise-queue-manager.git"
},
"keywords": [
"nodejs",
"promise",
"queue",
"promise-queue"
],
"author": {
"name": "Gustavo Laux",
"url": "https://gustavolaux.com.br",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gustavolaux/promise-queue-manager/issues"
},
"homepage": "https://github.com/gustavolaux/promise-queue-manager#readme",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@types/chai": "4.2.21",
"@types/chai-spies": "1.0.3",
"@types/mocha": "8.2.1",
"@types/node": "16.18.4",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"chai": "4.3.4",
"chai-spies": "1.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"mocha": "10.1.0",
"ts-node": "9.1.1",
"typescript": "4.5.5"
}
}