forked from clauderic/react-tiny-virtual-list
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.62 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.62 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-tiny-virtual-list-oss",
"version": "2.3.1",
"description": "A tiny but mighty list virtualization component, with zero dependencies 💪",
"main": "build/react-tiny-virtual-list.cjs.js",
"module": "build/react-tiny-virtual-list.es.js",
"jsnext:main": "build/react-tiny-virtual-list.es.js",
"types": "types/index.d.ts",
"files": [
"build",
"types"
],
"scripts": {
"build": "babel-node --presets es2015 ./config/build.js",
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0 --format codeframe",
"start": "nwb serve-react-app demo/src/index.tsx --config ./config/nwb/config.js",
"test": "jest --config ./config/jest/config.json --no-cache",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run lint && npm run test && codecov"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": ">=16.3"
},
"devDependencies": {
"@shopify/eslint-plugin": "^39.0.4",
"@types/jest": "^20.0.8",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"awesome-typescript-loader": "^3.2.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-typescript": "^7.0.0-alpha.19",
"codecov": "^1.0.1",
"eslint": "^7.18.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^4.0.1",
"jest": "^26.6.3",
"nwb": "0.15.x",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^2.6.1",
"rollup": "0.50.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.15.0",
"rollup-plugin-uglify": "^2.0.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"author": {
"name": "Clauderic Demers",
"email": "me@ced.io"
},
"user": "clauderic",
"homepage": "https://github.com/manvydasu/react-tiny-virtual-list-oss",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/manvydasu/react-tiny-virtual-list-oss.git"
},
"bugs": {
"url": "https://github.com/manvydasu/react-tiny-virtual-list-oss/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"scrolling",
"infinite",
"virtualized",
"virtualization",
"windowing"
]
}