-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "@mnmadhukar/node-spqs",
"version": "1.0.0",
"description": "A priority queue service built on top of AWS SQS with Redis for priority management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"aws",
"sqs",
"priority-queue",
"redis",
"queue",
"typescript"
],
"author": "Aman Madhukar <madhukaraman02@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/madhukaraman/node-spqs.git"
},
"bugs": {
"url": "https://github.com/madhukaraman/node-spqs/issues"
},
"homepage": "https://github.com/madhukaraman/node-spqs#readme",
"dependencies": {
"aws-sdk": "^2.1692.0",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/redis": "^4.0.10",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
},
"files": [
"dist/**/*",
"README.md"
]
}