-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1 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
{
"name": "enqueuer-plugin-amqp",
"version": "1.0.1",
"description": "Enqueuer amqp plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"all": "npm run clean && npm run lint && npm run build",
"lint": "node_modules/.bin/tslint --project tsconfig.json",
"prepublishOnly": "npm run all",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enqueuer-land/enqueuer-plugin-amqp.git"
},
"keywords": [
"enqueuer",
"nqr",
"amqp",
"plugin"
],
"author": "Virgs",
"license": "MIT",
"bugs": {
"url": "https://github.com/enqueuer-land/enqueuer-plugin-amqp/issues"
},
"homepage": "https://github.com/enqueuer-land/enqueuer-plugin-amqp#readme",
"devDependencies": {
"@types/node": "^11.13.15",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/amqp": "^0.2.4",
"amqp": "^0.2.7",
"enqueuer": "^6.0.0"
}
}