-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "electron-chromecast",
"version": "1.1.0",
"description": "An implementation of the chrome.cast API in electron",
"main": "build/index.js",
"contributors": [
{
"name": "Jesse Ostrander",
"email": "[email protected]"
}
],
"dependencies": {
"castv2": "^0.1.6",
"lodash": "^4.13.1",
"node-mdns-easy": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2"
},
"scripts": {
"build": "gulp build",
"lint": "eslint ./src",
"prepublish": "npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GPMDP/electron-chromecast.git"
},
"keywords": [
"chromecast",
"electron"
],
"author": "Samuel Attard",
"license": "MIT",
"bugs": {
"url": "https://github.com/GPMDP/electron-chromecast/issues"
},
"homepage": "https://github.com/GPMDP/electron-chromecast#readme",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-class-properties"
]
}
}