-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "glazba",
"version": "0.0.2",
"description": "An electron application to manage dev talks",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron . &",
"lint": "eslint .",
"package": "electron-packager ./ Glazba --all --out ~/Desktop/Glazba --version 0.37.2 --overwrite --icon=./app/img/icon.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skylerto/Glazba.git"
},
"keywords": [
"Electron",
"Developer",
"Talks"
],
"author": "Skyler Layne <skylerclayne@gmail.com> (http://www.skylerlayne.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skylerto/Glazba/issues"
},
"homepage": "https://github.com/skylerto/Glazba#readme",
"dependencies": {
"youtube-dl": "1.10.5",
"ytdl-core": "0.7.12"
},
"devDependencies": {
"electron-packager": "5.2.1",
"electron-prebuilt": "0.37.2",
"eslint": "^2.0.0",
"eslint-config-airbnb": "6.1.0",
"eslint-plugin-react": "4.2.2"
},
"eslintConfig": {
"extends": "airbnb"
}
}