forked from jsdevkr/react-chatview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 900 Bytes
/
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
{
"name": "react-chatview",
"version": "0.1.2",
"description": "Infinite scroll chat or feed component for React.js",
"main": "lib/react-chatview.js",
"jsnext:main": "src/react-chatview.js",
"license": "BSD",
"scripts": {
"build": "webpack",
"dist": "NODE_ENV=prod webpack --config webpack.dist.js",
"lib": "BABEL_ENV=commonjs babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/dustingetz/react-chatview"
},
"keywords": [
"react",
"chat",
"scroll",
"infinite"
],
"dependencies": {
"lodash.clone": "^3.0.0"
},
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6",
"babel-loader": "^6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.11.0"
}
}