-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "hirefire-resource",
"version": "1.1.0",
"description": "HireFire integration library for Node.js applications",
"keywords": [
"hirefire",
"heroku",
"autoscale",
"autoscaling",
"autoscaler",
"web",
"worker",
"dyno"
],
"homepage": "https://hirefire.io",
"author": "Michael van Rooijen <[email protected]>",
"license": "MIT",
"files": [
"CHANGELOG.md",
"src"
],
"exports": {
".": "./src/index.js",
"./middleware/connect": "./src/middleware/connect.js",
"./middleware/express": "./src/middleware/express.js",
"./middleware/koa": "./src/middleware/koa.js",
"./middleware/fastify": "./src/middleware/fastify.js",
"./macro/bullmq": "./src/macro/bullmq.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hirefire/hirefire-resource-node.git"
},
"bugs": {
"url": "https://github.com/hirefire/hirefire-resource-node/issues"
},
"scripts": {
"test": "jest --silent --coverage --coverageReporters=html",
"check": "prettier --check --no-semi .",
"format": "prettier --write --no-semi .",
"doc": "jsdoc"
},
"engines": {
"node": ">=16.0.0 <22.0.0"
},
"dependencies": {
"async-mutex": "<1"
},
"devDependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/platform-express": "^10.2.8",
"@nestjs/testing": "^10.2.8",
"bullmq": "^4.13.2",
"connect": "^3.7.0",
"express": "^4.18.2",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1",
"jest": "^29.3.1",
"jsdoc": "^4.0.2",
"koa": "^2.14.2",
"nock": "^13.3.0",
"prettier": "^3.1.0",
"sails": "^1.5.8",
"sinon": "^17.0.1",
"supertest": "^6.3.3"
}
}