This repository was archived by the owner on Nov 23, 2022. It is now read-only.
forked from stevensacks/react-smart-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"name": "@dotsub/react-smart-scroll",
"version": "2.0.2",
"description": "Smart Scroll React Component for long lists",
"author": "Steven Sacks",
"homepage": "https://github.com/dotsub/react-smart-scroll",
"license": "MIT",
"repository": "https://github.com/dotsub/react-smart-scroll",
"keywords": [
"react",
"react scroll",
"react smart scroll",
"react virtual scrolling",
"react virtualized scrolling",
"react list",
"react list scroll"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test:watch": "jest --watch --no-cache",
"test": "jest --coverage --collectCoverageFrom=src/**/*.jsx --collectCoverageFrom=src/**/*.js",
"lint": "eslint --ext .js --ext .jsx src/ -o build/eslint.xml -f checkstyle || true",
"lintfix": "eslint --fix --ext .js --ext .jsx src/"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jsdom": "^16.2.2",
"lint-staged": "^10.2.11",
"nwb": "0.25.x",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.13.1"
}
}