-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.02 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
{
"name": "world-of-addons",
"version": "1.0.0",
"description": "Open source addon manager for World of Warcraft. Install, update, and manage all your WoW addons in a single lightweight application.",
"main": "dist/main.bundle.js",
"scripts": {
"start": "cross-env ENV=\"dev\" electron .",
"linter": "standard --fix",
"test": "jest --config=jest.config.json",
"build": "webpack --mode development",
"build:hot": "webpack --watch --mode development",
"package-win": "electron-packager . WorldOfAddons --overwrite --asar --platform=win32 --arch=x64 --icon=assets/icon.ico --prune --out=release/ --version-string.CompanyName=WorldOfAddons --version-string.FileDescription=WorldOfAddons --version-string.ProductName=\"WorldOfAddons\""
},
"repository": "https://github.com/WorldofAddons/worldofaddons",
"keywords": [
"wow",
"addons",
"manager"
],
"author": "World of Addons Team",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"asar": "^0.14.5",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"css-loader": "^1.0.0",
"electron": "^3.0.9",
"electron-packager": "^12.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"regenerator-runtime": "^0.12.1",
"standard": "^12.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"browser-resolve": "^1.11.3",
"chokidar": "^2.0.4",
"cross-env": "^5.2.0",
"decompress": "^4.2.0",
"jsdom": "^12.0.0",
"lodash": "^4.17.11",
"lodash.clonedeep": "^4.5.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"redux-logger": "^3.0.6",
"redux": "^4.0.0",
"request-promise": "^4.2.2",
"xmlhttprequest": "^1.8.0"
}
}