generated from haraka/haraka-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 955 Bytes
/
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
{
"name": "haraka-plugin-resque",
"version": "1.2.1",
"description": "Haraka plugin that act as a queue and perform REST post to a remote url",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p . && cp -f dist/index.js ./index.js || true",
"test": "npm run build && npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niiknow/haraka-plugin-resque.git"
},
"keywords": [
"haraka",
"plugin",
"resque",
"queue",
"rest"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/niiknow/haraka-plugin-resque/issues"
},
"homepage": "https://github.com/niiknow/haraka-plugin-resque#readme",
"devDependencies": {
"@types/node": "^20.11.10",
"haraka-test-fixtures": "*",
"mocha": "^10.2.0",
"nock": "^13.5.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7"
}
}