forked from dcurletti/redux-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
57
58
59
60
61
62
{
"name": "redux-infinite-scroll",
"version": "1.0.9",
"description": "React infinite scroll component designed for a Redux data-flow.",
"main": "lib/ReduxInfiniteScroll.js",
"scripts": {
"test": "npm run transpile && karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --single-run=false",
"transpile": "babel src --out-dir lib",
"build": "webpack --config production.webpack.js",
"dev:build:watch": "webpack --config dev.webpack.js --watch",
"build:min": "webpack --config min.webpack.js",
"build:release": "npm run transpile && npm run build && npm run build:min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealScout/redux-infinite-scroll.git"
},
"keywords": [
"React",
"Redux",
"Infinite",
"Scroll"
],
"author": "RealScoutTech",
"license": "MIT",
"bugs": {
"url": "https://github.com/RealScout/redux-infinite-scroll/issues"
},
"homepage": "https://github.com/RealScout/redux-infinite-scroll#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.16.0",
"jasmine": "2.3.2",
"jasmine-core": "2.3.4",
"karma": "0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "0.1.2",
"karma-jasmine": "0.3.8",
"karma-jasmine-jquery": "0.1.1",
"karma-phantomjs-launcher": "1.0.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"phantomjs-prebuilt": "2.1.12",
"react": "^15.4.0",
"react-addons-css-transition-group": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0",
"react-immutable-proptypes": "^1.7.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.10.1",
"webpack-hot-middleware": "^2.6.0"
}
}