-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "ehreader",
"version": "1.0.2",
"description": "Command Line Reader for Azure Event Hubs",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"link": "npm link",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angshuman/ehreader.git"
},
"keywords": [
"EventHub",
"Azure\u001b[D\u001b[D\u001b[D\u001b[D\u001b[DEventHubs",
"Azure"
],
"author": "sendtoansu@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/angshuman/ehreader/issues"
},
"homepage": "https://github.com/angshuman/ehreader#readme",
"dependencies": {
"@azure/event-hubs": "^2.1.1",
"chalk": "^2.4.2",
"configstore": "^5.0.0",
"inquirer": "^7.0.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/configstore": "^4.0.0",
"@types/inquirer": "^6.5.0",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"bin": {
"ehreader": "./dist/index.js"
}
}