-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cmusd",
"version": "1.8.1",
"description": "CMUS Media Player Integration",
"bin": {
"cmusd": "bin/index.js"
},
"main": "bin/index.js",
"scripts": {
"build": "babel src -d bin",
"setup": "npm install && npm run build && npm link",
"push": "git push github master && git push gitlab master",
"test": "echo \"There's no possible way to test this since it spawns or integrates with the cmus binary so it would run if you have the cmus binary installed\"",
"version": "npm run build",
"postversion": "npm run push"
},
"os": [
"!win32"
],
"engines": {
"node": ">=4 <=11"
},
"files": [
"bin"
],
"keywords": [
"cli",
"cmus",
"music",
"media",
"player",
"integration",
"mpris",
"mpris2",
"daemon",
"musicplayer",
"gui",
"dbus",
"albumart",
"mediakeys",
"keys"
],
"author": "Miraculous Owonubi <omiraculous@gmail.com>",
"maintainers": [
"Miraculous Owonubi <omiraculous@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/miraclx/cmusd.git"
},
"bugs": {
"url": "https://github.com/miraclx/cmusd/issues"
},
"license": "Apache-2.0",
"babel": {
"presets": [
"airbnb",
[
"@babel/preset-env",
{
"corejs": "3",
"useBuiltIns": "usage",
"targets": {
"node": 4
}
}
]
]
},
"dependencies": {
"chalk": "^2.4.2",
"core-js": "^3.0.1",
"mpris-service": "^1.1.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-preset-airbnb": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.17.1"
},
"homepage": "https://github.com/miraclx/cmusd#readme"
}