-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
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
{
"name": "@brianmcallister/react-auto-scroll",
"version": "1.1.0",
"description": "Automatically scroll an element to the bottom",
"main": "dist/AutoScroll.js",
"repository": "brianmcallister/react-auto-scroll",
"homepage": "https://react-auto-scroll.netlify.com/",
"license": "MIT",
"author": {
"name": "Brian Wm. McAllister",
"email": "brian@brianmcallister.com",
"url": "https://www.brianmcallister.com"
},
"files": [
"dist/**/*"
],
"keywords": [
"autoscroll",
"scroll",
"react"
],
"scripts": {
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore ./src ./demo",
"prepare": "tsc",
"stylelint": "stylelint demo/**/*.scss",
"test": "jest --coverage",
"types": "tsc --noEmit"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
},
"dependencies": {
"classnames": "^2"
},
"devDependencies": {
"@types/classnames": "2.2.9",
"@types/enzyme": "3.10.3",
"@types/jest": "24.0.23",
"@types/react": "16.9.13",
"@typescript-eslint/eslint-plugin": "2.6.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-typescript": "6.1.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.3",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "1.7.0",
"eslint-plugin-unicorn": "12.1.0",
"jest": "^25.2.7",
"jest-environment-enzyme": "7.1.2",
"jest-enzyme": "7.1.2",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"stylelint": "^13.7.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-sass-guidelines": "6.1.0",
"stylelint-scss": "3.12.1",
"ts-jest": "^25.3.1",
"typescript": "3.7.2"
}
}