forked from witem/rtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "r-tail",
"version": "1.0.5",
"description": "Terminal output to the browser in seconds, using UNIX pipes",
"keywords": [
"tail",
"log",
"logs",
"logio",
"logging",
"udp"
],
"author": "Artem Kuzmenko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]: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": {
"angular": "^1.3.15",
"angular-animate": "^1.4.0",
"angular-localforage": "^1.2.2",
"angular-moment": "^1.1.0",
"angular-rt-popup": "^1.0.5",
"angular-ui-router": "^0.4.3",
"ansi_up": "^2.0.2",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"mocha": "^4.0.1",
"node-sass": "^4.6.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1"
},
"scripts": {
"start": "DEBUG=rtail:*,api:* ./cli/rtail-server.js",
"build": "./node_modules/.bin/webpack",
"build:watch": "./node_modules/.bin/webpack --watch",
"lint": "./node_modules/.bin/eslint .",
"prepublish": "npm run lint && NODE_ENV=production npm run build",
"test": "NODE_ENV=test node test/runner.js",
"test:watch": "NODE_ENV=test nodemon test/runner.js"
}
}