This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
116 lines (116 loc) · 3.31 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "themer-gui",
"productName": "Themer",
"version": "0.19.0",
"description": "A graphical UI for themer.",
"main": "main/index.js",
"author": "mjswensen",
"repository": "git@github.com:mjswensen/themer-gui.git",
"license": "MIT",
"build": {
"appId": "com.mjswensen.themer",
"productName": "Themer",
"fileAssociations": {
"ext": "thmr",
"name": "Themer",
"description": "Themer theme"
},
"mac": {
"category": "public.app-category.developer-tools",
"publish": "github"
},
"linux": {
"publish": "github"
},
"win": {
"publisherName": "Matt Swensen",
"publish": "github"
},
"nsis": {
"perMachine": true
}
},
"jest": {
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
},
"scripts": {
"bundle": "webpack",
"start": "npm run bundle; concurrently \"watch 'npm run bundle' renderer\" \"NODE_ENV=development electron --inspect .\"",
"test": "jest",
"watch": "npm run test -- --watch",
"dist": "npm run bundle && electron-builder --mac --win --linux",
"release": "npm run dist -- --publish onTagOrDraft"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"concurrently": "^3.6.1",
"css-loader": "^0.28.11",
"electron": "^2.0.8",
"electron-builder": "^20.28.4",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.6",
"react-test-renderer": "^16.4.2",
"style-loader": "^0.19.1",
"watch": "^1.0.2",
"webpack": "^3.12.0"
},
"dependencies": {
"classnames": "^2.2.6",
"color": "^2.0.1",
"color-steps": "^1.0.1",
"electron-updater": "^3.1.2",
"lodash": "^4.17.10",
"pn": "^1.1.0",
"prettier": "^1.13.5",
"qs": "^6.7.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-transition-group": "^2.3.1",
"recursive-copy": "^2.0.9",
"redux": "^3.6.0",
"themer": "^3.1.4",
"themer-alfred": "^1.0.6",
"themer-atom-syntax": "^2.0.1",
"themer-atom-ui": "^1.0.2",
"themer-bbedit": "^1.0.2",
"themer-chrome": "^1.0.3",
"themer-cmd": "^1.0.3",
"themer-colors-default": "^1.0.6",
"themer-colors-finger-paint": "^1.0.0",
"themer-colors-github-universe": "^1.0.0",
"themer-colors-lucid": "^1.0.0",
"themer-colors-night-sky": "^1.0.4",
"themer-colors-nova": "^1.0.0",
"themer-colors-one": "^1.0.4",
"themer-colors-polar-ice": "^1.0.2",
"themer-colors-solarized": "^1.0.0",
"themer-conemu": "^1.0.2",
"themer-hyper": "^3.0.1",
"themer-iterm": "^2.0.1",
"themer-jetbrains": "^1.0.1",
"themer-kitty": "^1.0.1",
"themer-sketch-palettes": "^1.0.0",
"themer-slack": "^2.0.1",
"themer-sublime-text": "^2.0.1",
"themer-terminal": "^2.0.1",
"themer-tmux": "^1.0.4",
"themer-vim": "^3.0.1",
"themer-vim-lightline": "^3.0.1",
"themer-vscode": "^2.0.1",
"themer-wallpaper-block-wave": "^3.0.1",
"themer-wallpaper-octagon": "^3.0.1",
"themer-wallpaper-triangles": "^2.0.3",
"themer-xcode": "^2.0.2"
}
}