forked from ebshimizu/stats-of-the-storm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.93 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
90
91
92
93
94
95
96
97
98
99
{
"name": "stats-of-the-storm",
"version": "2.6.39",
"main": "main.js",
"description": "A Heroes of the Storm stat tracking application.",
"bugs": "[email protected]",
"author": "Falindrith",
"license": "MIT",
"files": ["main.js", "index.html", "background.html", "hots-parser/parser.js", "hots-parser/constants.js", "hots-parser/attrs.js", "templates", "js", "assets"],
"repository": {
"type": "git",
"url": "https://github.com/ebshimizu/stats-of-the-storm.git"
},
"dependencies": {
"@fengyuanchen/datepicker": "^0.6.5",
"chart.js": "^2.7.2",
"datatables.net": "^1.10.19",
"datatables.net-buttons": "^1.5.3",
"datatables.net-buttons-se": "^1.5.3",
"datatables.net-fixedcolumns": "^3.2.6",
"datatables.net-fixedcolumns-se": "^3.2.6",
"datatables.net-fixedheader": "^3.1.5",
"datatables.net-fixedheader-se": "^3.1.5",
"datatables.net-responsive": "^2.2.3",
"datatables.net-responsive-se": "^2.2.3",
"datatables.net-scroller": "^1.5.1",
"datatables.net-scroller-se": "^1.5.1",
"datatables.net-se": "^1.10.19",
"electron-settings": "^3.1.4",
"electron-updater": "^4.0.0",
"electron-util": "^0.6.0",
"electron-window-state": "^4.1.1",
"extract-zip": "^1.6.7",
"floatthead": "^2.1.2",
"form-data": "^2.3.2",
"fs-extra": "^5.0.0",
"handlebars": "^4.0.11",
"heroprotocol": "github:GaryIrick/heroprotocol",
"hots-parser": "^7.46.0",
"jquery": "^3.3.1",
"jquery-tablesort": "0.0.11",
"level-js": "^2.2.4",
"linvodb3": "^3.25.1",
"medea": "^1.0.3",
"medeadown": "^1.1.9",
"moment": "^2.22.1",
"nedb": "^1.8.0",
"node-watch": "^0.5.8",
"npm": "^5.8.0",
"request": "^2.88.0",
"semantic-ui": "^2.4.0",
"vis": "^4.21.0",
"xregexp": "^4.1.1"
},
"devDependencies": {
"electron": "^4.0.0",
"electron-builder": "^20.11.1",
"eslint": "^7.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2"
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"app": "electron ./",
"publish": "electron-builder --x64 --publish always",
"protocol": "node ./node_modules/heroprotocol/postinstall.js",
"format": "prettier -c --write \"js/**/*.js\" \"main.js\"",
"test:eslint": "eslint \"js/**/*.js\" \"main.js\"",
"test:prettier": "prettier -c \"js/**/*.js\" \"main.js\"",
"test": "run-s test:eslint test:prettier"
},
"resolutions": {
"graceful-fs": "^4.2.4"
},
"build": {
"appId": "com.stats-of-the-storm.app",
"productName": "Stats of the Storm",
"asar": true,
"publish": [{
"provider": "github",
"private": false
}],
"nsis": {
"oneClick": true,
"installerIcon": "build/icon.ico"
},
"mac": {
"icon": "build/stats.icns"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120,
"endOfLine": "auto"
}
}