-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 KB
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
{
"name": "peanar",
"version": "1.0.0-alpha.0",
"description": "A job queue for Node.js based on RabbitMQ",
"main": "dist/index.js",
"scripts": {
"test": "npx mocha",
"test:coverage": "nyc --reporter=html --reporter=text mocha",
"test:e2e": "npx mocha --exit --config .mocharc.e2e.json",
"test:e2e:docker": "docker compose -f docker-compose.test.yml up test",
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martianboy/peanar.git"
},
"files": [
"dist"
],
"keywords": [
"rabbitmq",
"job-queue",
"background-jobs",
"worker-queue"
],
"author": "Abbas Mashayekh",
"license": "MIT",
"bugs": {
"url": "https://github.com/martianboy/peanar/issues"
},
"engines": {
"node": ">= 18.x"
},
"homepage": "https://github.com/martianboy/peanar#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/amqplib": "^0.10.7",
"@types/chai": "^4.3.20",
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "^18.x",
"@types/sinon": "^17.0.4",
"@types/uuid": "^9.0.2",
"@types/wtfnode": "^0.7.3",
"chai": "^4.5.0",
"eslint": "^9.25.1",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"wtfnode": "^0.10.0"
},
"dependencies": {
"amqplib": "^0.10.7",
"debug": "^4.4.0",
"uuid": "^9.0.0"
}
}