-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "react-lazy-list",
"version": "0.1.0",
"description": "Lazy list react component for render very large Infinitely lists",
"main": "index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npm run build && jest",
"coverage": "npm test -- --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxSvargal/react-lazy-list.git"
},
"keywords": [
"react",
"lazy",
"list",
"scroll",
"infinite",
"fast",
"render"
],
"author": "MaxSvargal",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxSvargal/react-lazy-list/issues"
},
"homepage": "https://github.com/MaxSvargal/react-lazy-list#readme",
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"coveralls": "^2.11.16",
"enzyme": "^2.7.1",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0"
}
}