This repository was archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
98 lines (98 loc) · 2.59 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
{
"name": "diaporama-maker",
"version": "0.6.0",
"description": "An editor to make image slideshows performed with diaporama – including KenBurns effect and GLSL Transitions.",
"main": "nwjs.html",
"window": {
"title": "Diaporama Maker",
"icon": "static/assets/icon.png",
"toolbar": false,
"frame": true,
"width": 1024,
"height": 768,
"position": "center",
"min_width": 800,
"min_height": 600
},
"bin": {
"diaporama": "./cmd.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"ignore": ".*.json"
}
]
]
},
"scripts": {
"dev": "watchify client/index.js -d -o builds/app.bundle.js -v",
"build": "export NODE_ENV=production; npm run build-client && npm run build-bootstrap",
"build-client": "browserify client/index.js | derequire | uglifyjs -c -m --screw-ie8 > builds/app.bundle.js",
"build-bootstrap": "browserify bootstrap/index.js | derequire | uglifyjs -c -m --screw-ie8 > builds/diaporama.bundle.js"
},
"repository": {
"type": "git",
"url": "[email protected]:gre/diaporama-maker.git"
},
"author": "Gaëtan Renaudeau",
"license": "GPL",
"bugs": {
"url": "https://github.com/gre/diaporama-maker/issues"
},
"homepage": "https://github.com/gre/diaporama-maker",
"keywords": [
"diaporama",
"slideshow"
],
"dependencies": {
"archiver": "0.14.4",
"bezier-easing": "0.4.5",
"bezier-easing-editor": "0.4.3",
"bezier-easing-picker": "0.0.3",
"body-parser": "1.12.4",
"brace": "0.5.1",
"combokeys": "2.4.3",
"css-cursor": "1.0.0",
"diaporama": "1.6.1",
"diaporama-react": "1.8.0",
"etag": "1.6.0",
"express": "4.12.4",
"fresh": "0.3.0",
"glsl-transition-fade": "1.0.0",
"glsl-transition-validator": "0.4.0",
"glsl-transition-vignette": "0.4.1",
"glsl-transition-vignette-grid": "0.4.1",
"glsl-transitions": "2015.5.1",
"glsl-uniforms-editor": "0.1.1",
"gm": "1.18.1",
"json-beautify": "1.0.1",
"kenburns-editor": "0.1.1",
"lodash": "3.9.1",
"multer": "0.1.8",
"open": "0.0.5",
"parseurl": "1.3.0",
"portscanner": "1.0.0",
"q": "1.4.1",
"qajax": "1.3.0",
"raf": "2.0.4",
"react": "0.13.3",
"react-dnd": "0.9.8",
"rect-clamp": "0.0.0",
"rect-crop": "0.0.0",
"rect-mix": "0.0.0",
"request": "2.55.0",
"serve-static": "1.9.3",
"slide2d": "1.0.12",
"vendor-prefix": "0.1.0"
},
"devDependencies": {
"babelify": "6.1.1",
"browserify": "10.2.1",
"derequire": "2.0.0",
"uglify-js": "2.4.23",
"watchify": "3.2.1"
}
}