forked from ankitladhania/react-lazyload
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.02 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
63
64
65
66
{
"name": "react-lazyload",
"version": "2.1.6",
"description": "Lazyload your Component, Image or anything matters the performance.",
"main": "lib/index.js",
"scripts": {
"test": "karma start test/karma.conf.js",
"demo:watch": "webpack-dev-server --inline --config webpack.config.js --content-base examples --port 8721",
"demo:build": "NODE_ENV=production webpack",
"build": "babel src/ --out-dir lib/",
"lint": "eslint -c .eslintrc src/"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonslyvia/react-lazyload.git"
},
"keywords": [
"react-component",
"react",
"lazyload"
],
"author": "jasonslyvia <jasonslyvia@gmail.com> (http://undefinedblog.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonslyvia/react-lazyload/issues"
},
"homepage": "https://github.com/jasonslyvia/react-lazyload",
"devDependencies": {
"babel": "~6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.2",
"babel-loader": "~6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.2.0",
"chai-spies": "^0.7.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"istanbul": "~0.3.17",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.8",
"react-dom": "^0.14.3",
"react-hot-loader": "~1.2.8",
"react-router": "^2.0.1",
"webpack": "~1.11.0",
"webpack-dev-server": "~1.10.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
}
}