forked from ankeetmaini/react-infinite-scroll-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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-infinite-scroll-component",
"version": "4.0.1",
"description": "An Infinite Scroll component in react.",
"main": "lib/index.js",
"scripts": {
"dev": "NODE_ENV=development node server.js",
"build-demos": "NODE_ENV=development node_modules/.bin/webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "NODE_ENV=production node_modules/.bin/webpack --config webpack.config.js"
},
"directories": {
"demos": "demos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankeetmaini/react-infinite-scroll-component.git"
},
"keywords": [
"react",
"infinite-scroll",
"infinite",
"scroll",
"component",
"react-component"
],
"author": "Ankeet Maini <ankeet.maini@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankeetmaini/react-infinite-scroll-component/issues"
},
"homepage": "https://github.com/ankeetmaini/react-infinite-scroll-component#readme",
"peerDependencies": {
"react": ">=0.14.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.1",
"eslint-plugin-react": "^3.5.1",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.10.0",
"prop-types": "~15.5.8",
"react": "~15.5.4",
"react-dom": "~15.5.4",
"react-hot-loader": "^1.3.0",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1",
"webpack-hot-middleware": "^2.10.0"
}
}