-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
61
62
63
64
{
"name": "graycli",
"version": "1.0.11",
"description": "Graycli is a command line internface to query Graylog via the REST API. It tries emulate the \"docker logs -f\" behavior",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"repository": {
"type": "git",
"url": "https://github.com/rafaelquines/graycli.git"
},
"bugs": {
"url": "https://github.com/rafaelquines/graycli/issues"
},
"homepage": "https://github.com/rafaelquines/graycli",
"author": "Rafael Quines <rafaelquines@gmail.com>",
"license": "MIT",
"keywords": [
"graylog",
"docker",
"container",
"api",
"rest",
"logs"
],
"preferGlobal": true,
"bin": "./dist/src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"start": "ts-node src/app.ts",
"start:dev": "nodemon",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"devDependencies": {
"@types/bluebird": "^3.5.25",
"@types/chalk": "^2.2.0",
"@types/inquirer": "0.0.43",
"@types/node": "^10.12.18",
"@types/request-promise": "^4.1.42",
"@types/sprintf-js": "^1.1.1",
"gts": "^0.9.0",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "~3.1.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"inquirer": "^6.2.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sprintf-js": "^1.1.2"
}
}