This repository was archived by the owner on Jun 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.6 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.6 KB
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
{
"name": "lucki",
"productName": "Lucki Media",
"version": "0.2.11",
"description": "A media player",
"license": "MIT",
"repository": "Caaz/lucki",
"author": {
"name": "Daniel Caaz",
"email": "daniel@caaz.me",
"url": "caaz.me"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . --out=dist --asar --overwrite --all"
},
"main": "main.js",
"files": [
"app",
"themes",
"views",
"main.js"
],
"keywords": [
"music",
"audio",
"media",
"electron-app",
"electron"
],
"dependencies": {
"bootstrap": "^3.3.7",
"carlin": "git+https://git@github.com/Caaz/carlin.git",
"electron-debug": "^1.0.0",
"electron-settings": "^2.2.2",
"font-awesome": "^4.7.0",
"glob": "^7.1.1",
"id3-parser": "^1.0.3",
"jquery": "^3.1.1",
"jquery-ui": "^1.12.1",
"less": "^2.7.1",
"mkdirp": "^0.5.1",
"pug": "^2.0.0-beta6",
"sprintf-js": "^1.0.3",
"tablesorter": "^2.28.4"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron": "^9.4.0",
"electron-packager": "^8.0.0",
"require-rebuild": "^1.2.8",
"xo": "^0.16.0"
},
"xo": {
"semicolon": false,
"space": true,
"esnext": true,
"ignores": [
"*.pug"
],
"rules": {
"camelcase": 0,
"no-loop-func": 0,
"no-unused-vars": 1,
"max-statements-per-line": 1,
"no-mixed-operators": 0,
"guard-for-in": 0,
"keyword-spacing": 0,
"no-fallthrough": 0,
"brace-style": 0,
"curly": 0
},
"envs": [
"node",
"browser"
]
}
}