forked from russellsamora/scrollama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "scrollama",
"version": "1.4.1",
"description": "Lightweight scrollytelling library using IntersectionObserver",
"main": "build/scrollama.js",
"browser": "build/scrollama.js",
"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/russellgoldenberg/scrollama.git"
},
"homepage": "https://github.com/russellgoldenberg/scrollama#readme",
"keywords": [
"scrollytelling",
"scroll",
"scroll-driven",
"step",
"interactive",
"graphic",
"observer",
"IntersectionObserver",
"enter",
"exit",
"view",
"trigger"
],
"author": "Russell Goldenberg (@russellgoldenberg)",
"license": "MIT",
"devDependencies": {
"cross-env": "^5.1.3",
"rollup": "^0.55.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0"
}
}