forked from squirrelsquirrel78/react-scrollama
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 KB
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
{
"name": "react-scrollama",
"version": "2.3.0-beta.0",
"description": "A lightweight scrollytelling interface for React using the IntersectionObserver.",
"author": "Jason Kao <jason.kao@columbia.edu> (https://jasonkao.me)",
"license": "MIT",
"homepage": "https://jsonkao.github.io/react-scrollama/",
"main": "dist/index.js",
"module": "dist/index.es.js",
"keywords": [
"react",
"scrollama",
"scrollytelling",
"IntersectionObserver",
"interactive",
"graphic",
"scroll",
"scroll-driven"
],
"repository": {
"type": "git",
"url": "https://github.com/jsonkao/react-scrollama"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepublishOnly": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"test": "echo \"Error: no test specified\""
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^3.0.0",
"rollup": "^2.12.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-peer-deps-external": "^2.2.2"
},
"files": [
"dist"
],
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "avoid"
},
"dependencies": {
"react-intersection-observer": "^8.31.0"
}
}