-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 1.85 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
{
"name": "@senzil/cec-monitor",
"version": "2.1.0",
"description": "HDMI-CEC library with a simple monitor written on ES6 to make cec enabled apps.",
"author": {
"name": "SENZIL SRL",
"email": "[email protected]",
"web": "https://www.senzil.com"
},
"collaborators": [
{
"name": "Pablo González",
"email": "[email protected]",
"web": "https://github.com/pablodgonzalez"
}
],
"main": "index.js",
"bin": "./bin/cli.js",
"keywords": [
"cec",
"hdmi",
"hdmi-cec",
"libcec",
"cec-client",
"monitor",
"cec-monitor",
"Pulse-Eight",
"USB-CEC",
"Rasberry Pi",
"Anynet+",
"Aquos Link",
"BRAVIA Link",
"BRAVIA Sync",
"Control for HDMI",
"CE-Link",
"Regza Link",
"E-link",
"EasyLink",
"Fun-Link",
"INlink",
"Kuro Link",
"NetCommand for HDMI",
"Realink for HDMI",
"RIHD",
"RuncoLink",
"SimpLink",
"T-Link",
"VIERA Link",
"HDAVI Control",
"EZ-Sync",
"wrapper",
"node",
"nodejs"
],
"pre-commit": [
"release"
],
"scripts": {
"cli": "node $NODE_DEBUG_OPTION bin/cli.js",
"lint": "eslint src",
"build": "npm run lint && babel src -d lib",
"test": "babel src -d lib && node test/test.js",
"prepublishOnly": "npm run build",
"release": "npm version --no-git-tag-version prerelease && git add ."
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"pre-commit": "^1.2.2"
},
"repository": {
"type": "git",
"url": "[email protected]:senzil/cec-monitor.git"
},
"license": "MIT",
"dependencies": {
"deasync": "^0.1.14",
"death": "^1.1.0",
"event-stream": "^4.0.1"
}
}