This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "diaporama",
"version": "2.2.0",
"description": "Diaporama is an image slideshow engine providing high quality animation effects including Kenburns Effect and GLSL Transitions.",
"main": "index.js",
"scripts": {
"test": "testling",
"build": "mkdir -p dist; browserify index.js --s Diaporama | derequire | uglifyjs --preamble '/**\n * diaporama '$(npm view diaporama version)'\n * Gaëtan Renaudeau <[email protected]> – https://github.com/gre/diaporama\n */' -m -c > dist/build.min.js"
},
"testling": {
"browsers": [
"ie/latest",
"firefox/latest",
"chrome/latest",
"safari/latest"
],
"files": "test/*.js"
},
"repository": {
"type": "git",
"url": "http://github.com/gre/diaporama"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gre/diaporama/issues"
},
"homepage": "https://github.com/gre/diaporama",
"dependencies": {
"bezier-easing": "^0.4.4",
"croissant": "^0.2.0",
"gl-fbo": "^2.0.3",
"gl-shader": "^4.0.1",
"gl-texture2d": "^2.0.8",
"glsl-transition": "^1.0.0",
"glsl-transition-fade": "^1.0.0",
"kenburns-dom": "^1.1.1",
"kenburns-webgl": "^2.0.0",
"ndarray": "^1.0.16",
"object-assign": "^2.0.0",
"raf": "^2.0.4",
"rect-clamp": "0.0.0",
"rect-crop": "0.0.0",
"rect-mix": "0.0.0",
"slide2d": "^1.1.0",
"webglew": "^1.0.5"
},
"devDependencies": {
"browserify": "^9.0.3",
"derequire": "^2.0.0",
"eslint": "git://github.com/gre/eslint.git",
"q": "^1.2.0",
"tape": "^4.0.0",
"testling": "^1.7.1",
"uglify-js": "^2.4.17"
}
}