-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "scroll-interactions",
"version": "0.8.1",
"description": "Easy scroll-driven interactions in the browser built on top of IntersectionObserver",
"main": "dist/scroll-interactions.cjs.js",
"module": "dist/scroll-interactions.esm.js",
"browser": "dist/scroll-interactions.umd.js",
"files": [
"dist"
],
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pldg/scroll-interactions.git"
},
"scripts": {
"build": "rollup -c --environment prod",
"postbuild": "cp ./dist/scroll-interactions.iife.js ./docs/scroll-interactions.iife.js",
"server": "npx http-server docs/",
"upgrade-dependencies": "npx npm-check-updates -u && npm i"
},
"keywords": [
"scroll",
"scrollytelling",
"observe",
"intersect",
"trigger",
"direction",
"visibility",
"browser",
"viewport",
"element",
"IntersectionObserver"
],
"author": {
"email": "[email protected]",
"name": "Luca Poldelmengo",
"url": "https://github.com/pldg"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pldg/scroll-interactions/issues"
},
"homepage": "https://github.com/pldg/scroll-interactions#readme",
"devDependencies": {
"rollup": "^2.79.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-terser": "^7.0.2"
}
}