forked from stevejay/react-roving-tabindex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@getoutline/react-roving-tabindex",
"version": "3.2.3",
"description": "React implementation of a roving tabindex, now with grid support",
"author": "stevejay",
"license": "MIT",
"keywords": [
"hooks",
"react",
"roving",
"tab",
"tabindex",
"grid"
],
"repository": "outline/react-roving-tabindex",
"main": "dist/index.js",
"module": "dist/index.es.js",
"sideEffects": false,
"jsnext:main": "dist/index.es.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=10",
"yarn": "^1.0.0"
},
"scripts": {
"test": "cross-env CI=1 jest --env=jsdom",
"test:watch": "jest --env=jsdom --watch",
"test:coverage": "jest --env=jsdom --coverage",
"build": "rollup -c",
"start": "rollup -c -w",
"upgrade-to-latest": "yarn upgrade-interactive --latest",
"storybook": "start-storybook -p 9001 -c .storybook",
"deploy-storybook": "storybook-to-ghpages",
"eslint": "eslint --max-warnings 0 \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "yarn eslint",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"prettier": {
"trailingComma": "none"
},
"lint-staged": {
"src/**/*.{js,jsx,tsx,ts}": [
"eslint --fix --max-warnings 0 \"src/**/*.{js,jsx,ts,tsx}\""
]
},
"dependencies": {
"warning": "^4.0.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.4.22",
"@storybook/storybook-deployer": "^2.8.11",
"@svgr/rollup": "^6.2.1",
"@testing-library/react": "^13.0.1",
"@testing-library/react-hooks": "^8.0.0",
"@types/array-find-index": "^1.0.0",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/lodash.uniqueid": "^4.0.6",
"@types/react-dom": "^18.0.1",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.25",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.2",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"fork-ts-checker-webpack-plugin": "^7.2.6",
"gh-pages": "^3.2.3",
"husky": "7.0.4",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"jspolyfill-array.prototype.findIndex": "^0.1.0",
"lint-staged": "^12.3.7",
"lodash": "^4.17.21",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rollup": "^2.70.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"styled-components": "^5.3.5",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3"
},
"files": [
"dist",
"!.DS_Store"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}