-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
56 lines (56 loc) · 1.68 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
53
54
55
56
{
"name": "react-chatview",
"version": "0.2.5",
"description": "Infinite scroll chat or feed component for React.js",
"main": "dist/react-chatview.js",
"jsnext:main": "src/react-chatview.js",
"author": "Dustin Getz <[email protected]> (https://github.com/dustingetz)",
"maintainers": "Dongwoo Gim <[email protected]> (https://github.com/gimdongwoo)",
"license": "BSD-2-Clause",
"scripts": {
"build": "npm run lint && webpack && npm run dist && npm run lib",
"lint": "eslint -c .eslintrc src",
"dist": "NODE_ENV=prod webpack --config webpack.dist.js",
"lib": "BABEL_ENV=commonjs babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsdevkr/react-chatview.git"
},
"keywords": [
"react",
"chat",
"scroll",
"infinite"
],
"dependencies": {
"lodash.clone": "^4.5.0"
},
"peerDependencies": {
"react": ">= 0.15.0",
"react-dom": ">= 0.15.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^2.2.0"
},
"bugs": {
"url": "https://github.com/jsdevkr/react-chatview/issues"
},
"homepage": "https://github.com/jsdevkr/react-chatview#readme"
}