This repository was archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "react-lazy-hero",
"version": "2.0.0",
"description": "A hero component for React with image-preloading and parallax",
"homepage": "http://react-lazy-hero.danielstefanovic.com",
"main": "lib/index.js",
"author": "Daniel Stefanovic",
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint ./",
"prepublish": "yarn build",
"preversion": "yarn build && yarn test:all",
"postversion": "git push && git push --tags",
"test:all": "yarn lint"
},
"dependencies": {
"color": "^3.1.0",
"in-viewport": "^3.6.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"styled-components": "4.x"
},
"keywords": [
"react",
"hero",
"header",
"jumbotron",
"parallax",
"lazy",
"image-preloading",
"fade-in",
"component",
"color overlay"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danistefanovic/react-lazy-hero.git"
}
}