-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@microfleet/callback-queue",
"version": "3.0.0",
"description": "Put your callbacks into queue to make sure that concurrent requests that you might want to perform will only be executed once",
"main": "./lib/callback-queue.js",
"type": "module",
"exports": {
".": {
"import": "./lib/callback-queue.js",
"default": "./lib/callback-queue.js",
"types": "./lib/callback-queue.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "pnpm lint && pnpm compile && mocha test/*.spec.ts",
"lint": "eslint ./src",
"compile": "tsc --build ./tsconfig.build.json",
"prepublishOnly": "pnpm compile",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git://github.com/microfleet/callback-queue.git"
},
"bugs": {
"url": "https://github.com/microfleet/callback-queue/issues"
},
"keywords": [
"queue",
"callback",
"http",
"request"
],
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^4.4.0"
},
"engine": {
"node": ">= 22.13.0"
},
"devDependencies": {
"@makeomatic/deploy": "^13.1.0",
"@swc-node/register": "^1.10.9",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"mocha": "^11.0.1",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"typescript": "^5.7.3"
},
"files": [
"src/",
"lib/"
]
}