forked from UhhhWaitWhat/kodi-ws
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 985 Bytes
/
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
{
"name": "node-kodi-ws",
"version": "2.3.0",
"main": "lib/kodi-ws.js",
"author": "Florian Albertz",
"contributors": [
"Bram van Oploo <[email protected]>"
],
"license": "BSD-3-Clause",
"description": "A wrapper for the kodi jsonrpc interface",
"repository": {
"type": "git",
"url": "https://github.com/sudo-systems/node-kodi-ws.git"
},
"keywords": [
"kodi",
"jsonrpc",
"json-rpc"
],
"scripts": {
"prepublish": "make lint"
},
"dependencies": {
"eslint": "^1.2.1",
"has-value": "^0.2.0",
"jrpc-schema": "^1.1.0",
"set-value": "^0.2.0",
"ws": "^0.7.1"
},
"devDependencies": {
"eslint": "^1.2.1",
"version-bump": "^0.1.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"rules": {
"curly": [
2,
"multi-line"
],
"quotes": [
2,
"single"
]
},
"ecmaFeatures": {
"modules": true
}
}
}