-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1010 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1010 Bytes
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
{
"name": "pychromecast-wrapper",
"version": "0.0.8",
"description": "Node.js wrapper for pychromecast python library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "standard",
"test": "jest",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heiso/pychromecast-node-wrapper.git"
},
"keywords": [
"pychromecast",
"pychromecast-wrapper",
"chromecast",
"wrapper",
"node"
],
"author": "alexandre.moatty@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/heiso/pychromecast-node-wrapper/issues"
},
"homepage": "https://github.com/heiso/pychromecast-node-wrapper#readme",
"dependencies": {
"@types/mdns": "^0.0.33",
"mdns": "^2.5.1",
"python-shell": "^1.0.8"
},
"devDependencies": {
"jest": "^25.5.2",
"standard": "^14.3.3"
}
}