-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "photo-slap",
"version": "1.0.0",
"description": "electron slide-show application",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"test": "mocha ./test/test.js",
"win-bundle": "electron-packager . photo-slap --platform=win32 --arch=x64 --icon=resources/photo-slap.ico",
"mac-bundle": "electron-packager . photo-slap --platform=darwin --arch=x64 --icon=resources/photo-slap.ico"
},
"dependencies": {
"async": "^3.0.0",
"bluebird": "^3.5.5",
"bootstrap": "^4.3.1",
"electron-config": "^1.0.0",
"font-awesome": "^4.6.3",
"handlebars": "^4.7.6",
"jquery": "^3.4.1",
"kinda-exif": ">=0.4.1",
"popper.js": "^1.15.0",
"roboto-fontface": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddysant/photo-slap.git"
},
"keywords": [
"electron",
"photo",
"slideshow"
],
"author": "Eddy Sant",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddysant/photo-slap/issues"
},
"homepage": "https://github.com/eddysant/photo-slap#readme",
"devDependencies": {
"diff": "^3.5.0",
"electron": "^4.2.12",
"electron-packager": "^13.1.1",
"electron-prebuilt": "^1.4.1",
"esprima": "^4.0.1",
"gulp": "^4.0.2",
"gulp-eslint": "^4.0.2",
"gulp-eslint-threshold": "^0.1.1",
"mocha": "^8.2.1",
"should": "^13.2.3"
}
}