-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 891 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
36
37
38
39
40
41
42
43
44
45
{
"name": "amixer-web",
"version": "1.0.1",
"description": "alsa mixer web frontend",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/amixer-web.git"
},
"keywords": [
"alsamixer",
"amixer",
"equalizer",
"audio",
"volume",
"web",
"frontend",
"ui"
],
"author": "Sebastian Raff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/amixer-web/issues"
},
"homepage": "https://github.com/hobbyquaker/amixer-web#readme",
"dependencies": {
"express": "^4.17.1",
"yargs": "^14.2.0"
},
"devDependencies": {
"xo": "^0.25.3"
},
"xo": {
"space": 4,
"rules": {
"import/order": "warn",
"no-path-concat": "warn"
}
}
}