-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 926 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
{
"name": "pipr",
"version": "1.0.0",
"description": "stealthy menubar video player for YouTube & Vimeo",
"author": "John Rodler",
"license": "MIT",
"homepage": "https://github.com/jrodl3r/pipr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jrodl3r/pipr.git"
},
"bugs": {
"url": "https://github.com/jrodl3r/pipr/issues"
},
"main": "app.js",
"scripts": {
"lint": "eslint ./*.js",
"start": "npm run lint && electron .",
"build": "npm run lint && electron-packager . Pipr --overwrite --icon=Icon.icns"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"devtron": "^1.4.0",
"electron": "^1.4.11",
"electron-debug": "^1.1.0",
"electron-packager": "^8.4.0",
"eslint": "^3.12.0"
},
"dependencies": {
"electron-localshortcut": "^1.0.0",
"jquery": "^3.1.1",
"menubar": "^5.1.0",
"node-localstorage": "^1.3.0"
}
}