-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "react-virtual-list",
"version": "2.2.3",
"description": "Super simple virtualized list React higher-order component",
"main": "lib/VirtualList.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src --out-dir lib --copy-files --ignore tests",
"build:demo": "webpack --config demo/webpack.config.babel.js",
"stats": "webpack .\\demo\\src\\app.js --config .\\demo\\webpack.config.babel.js --profile --json > stats.json",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/developerdizzle/react-virtual-list.git"
},
"keywords": [
"react",
"virtual",
"list",
"render",
"scroll",
"performance"
],
"author": "developerdizzle",
"bugs": {
"url": "https://github.com/developerdizzle/react-virtual-list/issues"
},
"homepage": "https://github.com/developerdizzle/react-virtual-list",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"file-loader": "^0.9.0",
"gulp": "^3.8.11",
"gulp-react": "^3.0.1",
"jasmine-node": "^1.14.5",
"jest": "^17.0.3",
"react": "^15.0.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack": "^1.13.3"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}