-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.85 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
{
"name": "grinch-player",
"productName": "GrinchPlayer",
"version": "1.2.1",
"description": "Технопранк-плеер",
"license": "MIT",
"author": {
"name": "Nik"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --windows",
"release": "np",
"sass": "node-sass index.scss index.css"
},
"dependencies": {
"@sindresorhus/slugify": "^0.9.1",
"bulma": "^0.7.5",
"bulmaswatch": "^0.7.2",
"electron-context-menu": "^0.12.1",
"electron-debug": "^3.0.0",
"electron-store": "^3.3.0",
"electron-unhandled": "^2.2.0",
"electron-util": "^0.12.0",
"fancy-textfill": "^1.2.5",
"farmhash": "^3.0.0",
"fast-glob": "^3.0.2",
"filenamify": "^4.1.0",
"fork-awesome": "^1.1.7",
"hotkeys-js": "^3.6.11",
"howler": "^2.1.2",
"iconv-lite": "^0.5.0",
"jquery": "^3.4.1",
"jquery-jeditable": "^2.0.10",
"jquery-ui-dist": "^1.12.1",
"list.js": "^1.5.0",
"lodash": "^4.17.11",
"simplebar": "^4.1.0",
"tippy.js": "^4.3.4"
},
"devDependencies": {
"electron": "^5.0.4",
"electron-builder": "^20.43.0",
"eslint": "^5.16.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-ava": "^7.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-no-use-extend-native": "^0.4.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-unicorn": "^9.1.0",
"node-sass": "^4.12.0",
"np": "^5.0.3",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"node",
"browser"
],
"space": 4,
"esnext ": false,
"rules": {
"prefer-arrow-callback": 0,
"unicorn/prevent-abbreviations": 0,
"prefer-destructuring": 0,
"object-shorthand": 0
}
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "com.Nik.GrinchPlayer",
"win": {
"target": "portable"
}
}
}