forked from kilianc/rtail
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "r-tail",
"version": "2.1.3",
"description": "Terminal output to the browser in seconds, using UNIX pipes",
"keywords": [
"tail",
"log",
"logs",
"logio",
"logging",
"udp"
],
"author": "Artem Kuzmenko <witem.artem@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:witem/rtail.git"
},
"bugs": {
"url": "https://github.com/witem/rtail/issues"
},
"engines": {
"node": ">=4"
},
"bin": {
"rtail": "./cli/rtail-client.js",
"rtail-server": "./cli/rtail-server.js"
},
"dependencies": {
"chrono-node": "^1.0.6",
"debug": "^3.1.0",
"express": "^4.10.0",
"json5": "^0.5.1",
"moniker": "^0.1.2",
"request": "^2.58.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"split": "^1.0.0",
"strip-ansi": "^4.0.0",
"through2-map": "^3.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"@vue/cli-service": "^3.0.0-beta.14",
"animate.css": "^3.5.2",
"ansi_up": "^2.0.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^4.5.0",
"extract-text-webpack-plugin": "^2.1.0",
"fecha": "^2.3.3",
"file-loader": "^0.11.1",
"font-awesome": "^4.7.0",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.16.0",
"mocha": "^4.0.1",
"ratchet-npm": "^2.0.4",
"style-loader": "^0.18.2",
"vue": "^2.2.6",
"vue-loader": "^12.2.1",
"vue-material": "^1.0.0-beta-10.2",
"vue-router": "^2.3.1",
"vue-socket.io": "^2.1.1-b",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.2.6",
"vuescroll": "^4.8.10",
"vuex": "^2.0.0",
"vuex-persistedstate": "^2.5.4",
"webpack": "3.0.0",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"start": "DEBUG=rtail:*,api:* ./cli/rtail-server.js",
"clean": "rm -rf dist",
"dev": "npm run clean && webpack-dev-server -d --open --progress",
"build": "npm run clean && NODE_ENV=production webpack -p --hide-modules --progress",
"lint": "./node_modules/.bin/eslint . --ext js,vue",
"prepublishOnly": "npm run lint && npm test && npm run build",
"test": "NODE_ENV=test ./node_modules/.bin/mocha"
}
}