forked from robin-dela/hover-effect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 KB
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
{
"name": "displacement-slideshow",
"version": "1.2.7",
"source": "src/displacement-slideshow.js",
"module": "dist/displacement-slideshow.es.js",
"main": "dist/displacement-slideshow.js",
"umd:main": "dist/displacement-slideshow.umd.js",
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^1.12.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"build": "microbundle build --globals three=THREE",
"watch": "microbundle watch --globals three=THREE",
"publish": "npm publish --access public",
"minify": "uglifyjs --mangle --compress -- dist/displacement-slideshow.js > js/displacement-slideshow.min.js",
"prettify": "prettier --trailing-comma=es5 --single-quote --print-width=120 --write ./js/slideshow.js"
},
"files": [
"dist"
],
"dependencies": {
"gsap": "^3.11.3",
"three": "^0.137.0"
},
"description": "Javascript library to build slideshow of images with a displacement effect on transition.",
"repository": {
"type": "git",
"url": "git+https://github.com/8BigFish88/displacement-slideshow.git"
},
"keywords": [
"displacement-slideshow"
],
"author": "8BigFish88",
"license": "ISC",
"bugs": {
"url": "https://github.com/8BigFish88/displacement-slideshow/issues"
},
"homepage": "https://github.com/8BigFish88/displacement-slideshow#readme"
}