-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "scrollama",
"version": "3.2.0",
"description": "Lightweight scrollytelling library using IntersectionObserver",
"main": "build/scrollama.js",
"browser": "build/scrollama.js",
"types": "index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -w -c",
"build": "npm run pretest && cross-env NODE_ENV=production rollup -c && npm run docs",
"pretest": "cross-env NODE_ENV=development rollup -c",
"docs": "cp build/scrollama.min.js docs"
},
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/russellsamora/scrollama.git"
},
"homepage": "https://github.com/russellsamora/scrollama#readme",
"keywords": [
"scrollytelling",
"scroll",
"scroll-driven",
"step",
"interactive",
"graphic",
"observer",
"IntersectionObserver",
"enter",
"exit",
"view",
"trigger"
],
"author": "Russell Samora",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
}
}