-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.69 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
{
"name": "proximity-effect",
"version": "v4.0.0-alpha1",
"description": "Mass animate CSS properties based on proximity of mouse or arbitrary target.",
"author": {
"name": "Adam Shailer",
"email": "adasha76@outlook.com",
"url": "http://adasha.com"
},
"browser": "./dist/ProximityEffect.js",
"unpkg": "./dist/ProximityEffect.min.js",
"directories": {
"test": "tests"
},
"keywords": [
"mouse",
"movement",
"track",
"tracker",
"tracking",
"distance",
"range",
"proximity",
"nearness",
"closeness",
"position",
"approach",
"interpolate",
"interpolation",
"visual",
"eye-candy",
"effect",
"filter",
"overlay",
"fader",
"CSS",
"style",
"stylesheet",
"animate",
"animation",
"tween",
"tweening",
"blend",
"transform",
"transition",
"element",
"front-end"
],
"homepage": "http://lab.adasha.com/components/proximity-effect",
"repository": {
"type": "git",
"url": "https://github.com/Adasha/proximity-effect"
},
"bugs": {
"url": "https://github.com/Adasha/proximity-effect/issues",
"email": "adasha76@outlook.com"
},
"license": "MPL-2.0",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"event-target": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-gzip": "^1.4.2",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jsdoc": "^3.6.10"
},
"scripts": {
"build": "gulp babel && gulp minify",
"build:docs": "jsdoc ./src/ProximityEffect.js -d ./docs -P ./package.json -R ./README.md",
"test": "echo \"Error: no test specified\" && exit 1"
}
}