-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "react-scrollable-list",
"version": "1.3.1",
"description": "A scrollable, high-performance list component for React",
"author": "Jonathan Warning",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwarning/react-scrollable-list"
},
"files": [
"dist",
"index.js",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"build": "babel index.js -d dist && webpack",
"prepublish": "npm run build"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^3.12.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"tags": [
"react",
"scrollable",
"list"
],
"keywords": [
"react",
"scrollable",
"list",
"performance"
]
}