forked from rafaelleru/torrent_player_old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "Torrent-Player",
"version": "0.0.1",
"description": "A small music player that takes the music from your torrent",
"main": "./src/main.js",
"scripts": {
"clean": "node ./bin/clean.js",
"package": "npm install && npm prune && npm dedupe && node ./bin/package.js",
"size": "npm run package -- darwin && du -ch dist/TorrentPlayer-darwin-x64 | grep total",
"start": "electron .",
"test": "standard",
"update-authors": "./bin/update-authors.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelleru/torrent-player.git"
},
"keywords": [
"Electron",
"music",
"torrent",
"streaming"
],
"author": "Rafaelleru",
"license": "GPL 3.0",
"bugs": {
"url": "https://github.com/rafaelleru/torrent-player/issues"
},
"homepage": "https://github.com/electron/electron-quick-start#readme",
"devDependencies": {
"electron": "^1.3.4",
"should": "^11.1.1",
"webtorrent-fixtures": "^1.5.0",
"mocha": "^2.1.0",
"electron-osx-sign": "^0.3.0",
"electron-packager": "^6.0.2",
"gh-release": "^2.0.3",
"nobin-debian-installer": "^0.0.9",
"plist": "^1.2.0",
"standard": "^6.0.5"
},
"dependencies": {
"application-config": "^0.2.0",
"application-config-path": "^0.1.0",
"drag-drop": "^2.12.1",
"electron": "^1.4.4",
"electron-localshortcut": "^0.6.1",
"electron-prebuilt": "0.37.5",
"webtorrent": "^0.97.2"
}
}