This repository has been archived by the owner on Jun 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) ยท 1.74 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
57
58
{
"name": "Genie",
"version": "1.4.1",
"description": "Native genie music player on OS X",
"main": "build/index.js",
"standard": {
"ignore": [
"src/windows/player/scripts/*.js"
]
},
"pre-commit": [
"lint:fix"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:fix": "standard --fix",
"dev": "electron .",
"pack": "npm run pack:clean && npm run pack:compile && build",
"pack:clean": "rm -rf dist/ build/",
"pack:compile": "babel src/ --copy-files --out-dir build",
"release": "npm run pack:clean && npm run pack:compile && npm run release:pkg",
"release:pkg": "build --publish=always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mskims/genie-music-player.git"
},
"author": "Minseok Kim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mskims/genie-music-player/issues"
},
"homepage": "https://github.com/mskims/genie-music-player#readme",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.51",
"@sentry/electron": "^0.5.5",
"auto-launch": "^5.0.5",
"throttle-debounce": "^2.0.0",
"electron-context-menu": "^0.10.0",
"electron-settings": "^3.2.0",
"electron-updater": "^2.21.10",
"genie-music": "^1.1.1",
"jquery": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-transform-runtime": "^7.0.0-beta.51",
"@babel/preset-es2015": "^7.0.0-beta.51",
"@babel/preset-stage-0": "^7.0.0-beta.51",
"electron": "^1.4.3",
"electron-builder": "^20.15.1",
"electron-media-service": "^0.2.2",
"electron-window-manager": "^1.0.6",
"standard": "^11.0.1",
"webpack-cli": "^2.0.15"
}
}