-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 Bytes
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
{
"name": "@wide/scroll",
"version": "2.1.1",
"description": "Observe scroll progression and provides helpers for parallax, locking and sticky effects.",
"license": "MIT",
"author": "Aymeric Assier (https://github.com/myeti)",
"contributors": [
"Aymeric Assier (https://github.com/myeti)",
"Julien Martins Da Costa (https://github.com/jdacosta)"
],
"repository": {
"type": "git",
"url": "https://github.com/wide/scroll.git"
},
"main": "lib",
"engines": {
"node": ">=12.18.0"
},
"scripts": {
"build": "babel src/ -d lib/ --presets=@babel/preset-env",
"prepare": "rimraf lib/ && npm run build"
},
"dependencies": {
"@wide/dom-observer": "^2.1.1",
"@wide/emitter": "^2.1.1",
"body-scroll-lock": "^3.1.5",
"jump.js": "^1.0.2",
"rellax": "^1.12.1",
"stickybits": "^3.7.9",
"uos": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"rimraf": "^3.0.2"
}
}