forked from clauderic/react-tiny-virtual-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-tiny-virtual-list",
"version": "2.0.3",
"description": "A tiny but mighty list virtualization component, with zero dependencies 💪",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "jest --no-cache",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest && codecov"
},
"dependencies": {},
"peerDependencies": {
"react": "15.x || 16.x"
},
"devDependencies": {
"babel-eslint": "7.0.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"codecov": "^1.0.1",
"eslint": "3.8.1",
"eslint-config-react-app": "^0.5.2",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"jest": "^19.0.2",
"nwb": "0.15.x",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2"
},
"author": {
"name": "Clauderic Demers",
"email": "me@ced.io"
},
"user": "clauderic",
"homepage": "https://github.com/clauderic/react-tiny-virtual-list",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clauderic/react-tiny-virtual-list.git"
},
"bugs": {
"url": "https://github.com/clauderic/react-tiny-virtual-list/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"scrolling",
"infinite",
"virtualized",
"virtualization",
"windowing"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.js$": "./babel-jest.config.js"
}
}
}