forked from muffinista/before-dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
171 lines (171 loc) · 4.96 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "before-dawn",
"productName": "Before Dawn",
"version": "0.9.18",
"description": "A desktop screensaver app using web technologies",
"author": "Colin Mitchell <[email protected]> (http://muffinlabs.com)",
"license": "MIT",
"homepage": "https://github.com/muffinista/before-dawn/",
"main": "output/main.js",
"scripts": {
"dev": "node bin/dev-runner.js",
"compile": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"postinstall": "electron-builder install-app-deps",
"pack": "yarn compile && electron-builder --dir",
"dist": "yarn compile && electron-builder --x64",
"test": "yarn compile && mocha test test/**",
"test-lib": "nyc --reporter=html mocha test test/lib/**",
"release": "yarn dist"
},
"repository": {
"type": "git",
"url": "git://github.com/muffinista/before-dawn.git"
},
"dependencies": {
"auto-launch": "^5.0.1",
"cross-env": "^5.1.1",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.12",
"eslint-plugin-vue": "^4.0.0-beta.2",
"ffi": "^2.2.0",
"folder-walker": "^3.1.0",
"fs-extra": "^2.0.0",
"glob": "^7.1.2",
"linux-battery": "^3.0.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"nconf": "^0.8.5",
"node-system-idle-time": "muffinista/node-system-idle-time.git#master",
"osx-battery": "gillstrom/osx-battery.git",
"raven": "^2.3.0",
"raven-js": "^3.21.0",
"ref": "^1.3.4",
"request": "^2.79.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"robotjs": "^0.4.7",
"temp": "^0.8.3",
"yauzl": "^2.7.0"
},
"#depnotes": [
"nodobjc is optional because it won't compile on windows, but is needed on OSX.",
"however, ref is a dependency of nodobjc that won't be rebuilt by electron-rebuild",
"unless specified as a dep so that's why it is in the rebuild command."
],
"optionalDependencies": {
"nodobjc": "^2.1.0",
"winctl": "muffinista/winctl"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"bootstrap": "4.0.0-beta",
"bootstrap-vue": "^1.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "1.8.2-beta.3",
"electron-builder": "19.47.1",
"electron-debug": "^1.4.0",
"electron-devtools-installer": "^2.2.3",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-webpack": "^3.0.2",
"gruntify-eslint": "^4.0.0",
"html-webpack-plugin": "^2.30.1",
"inject-loader": "^3.0.0",
"install": "^0.10.1",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"node-loader": "^0.6.0",
"node-sass": "^4.5.3",
"noty": "^3.1.3",
"nyc": "^11.2.1",
"popper.js": "^1.12.5",
"require-dir": "^0.3.0",
"sass-loader": "^6.0.6",
"sinon": "^4.0.2",
"spectron": "^3.7.2",
"spectron-fake-dialog": "^0.0.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"vue": "^2.5.6",
"vue-electron": "^1.0.6",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.5",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.7.1",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
},
"build": {
"files": [
"output/**/*",
"node_modules/**/*",
"package.json"
],
"appId": "Before Dawn",
"mac": {
"category": "public.app-category.entertainment"
},
"nsis": {
"installerIcon": "build/icon.ico",
"perMachine": false
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"asar": false,
"dmg": {
"contents": [
{
"x": 338,
"y": 14,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 14,
"type": "file"
}
]
},
"linux": {
"category": "Amusement",
"target": "deb",
"executableName": "before-dawn",
"maintainer": "Colin Mitchell <[email protected]>"
}
}
}