forked from logcat-org/logcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "logcat-browser",
"description": "Log the prefiltered debugging output of an android device (adb logcat output) to browser using a twwitter bootstrap based web interface",
"author": {
"name": "Oliver Bleckmann",
"url": "https://github.com/HansHammel"
},
"repository": {
"type": "git",
"url": "git://github.com/HansHammel/logcat-browser.git"
},
"main": "index.js",
"dependencies": {
"bootstrap": "^3.3.7",
"colors": "^1.1.2",
"express": "^4.14.0",
"express.oi": "0.0.21",
"jquery": "^3.1.1",
"open": "^0.0.5",
"which": "^1.2.12",
"snyk": "^1.316.1"
},
"version": "0.2.2",
"scripts": {
"start": "node index.js",
"test": "mocha test/app.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.1.1",
"supertest": "^2.0.1"
},
"bin": {
"logcat-browser": "./bin/logcat-browser.js"
},
"keywords": [
"adb",
"logcat",
"viewer",
"log",
"debug",
"debugger",
"interface",
"gui",
"ui",
"web",
"android",
"browser",
"web"
],
"license": "MIT",
"snyk": true
}