This repository has been archived by the owner on Aug 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.43 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": "react-masonry-infinite",
"version": "1.2.2",
"description": "React component for masonry infinite grid. Based on Bricks.js, React Infinite Scroller and React Masonry Layout.",
"main": "./lib/index",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"prepublish": "npm run clean && npm run build",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skoob13/react-masonry-infinite.git"
},
"keywords": [
"react",
"masonry",
"react-component",
"infinite",
"scroll"
],
"author": "Georgiy Tarasov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skoob13/react-masonry-infinite/issues"
},
"homepage": "https://skoob13.github.io/react-masonry-infinite",
"dependencies": {
"bricks.js": "^1.7.0",
"prop-types": "^15.5.10",
"react-infinite-scroller": "^1.0.12"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"react": ">= 0.14.0"
}
}