forked from danbovey/react-infinite-scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "react-infinite-scroller",
"version": "0.2.9",
"description": "Infinite scroll component for React in ES6",
"main": "dist/react-infinite-scroll.js",
"jsnext:main": "src/react-infinite-scroll.js",
"repository": {
"type": "git",
"url": "git://github.com/CassetteRocks/react-infinite-scroll.git"
},
"scripts": {
"build": "mkdir -p dist && babel src/react-infinite-scroll.js --presets es2015 --plugins add-module-exports --out-file dist/react-infinite-scroll.js",
"prepublish": "npm run build"
},
"keywords": [
"infinite",
"scroll",
"react"
],
"author": "CassetteRocks",
"license": "MIT",
"bugs": {
"url": "https://github.com/CassetteRocks/react-infinite-scroll/issues"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"i": "^0.3.4",
"npm": "^3.8.3",
"react": "^0.14.0 || ^15.0.1",
"react-dom": "^0.14.0 || ^15.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1",
"react-dom": "^0.14.0 || ^15.0.1"
}
}