-
-
Notifications
You must be signed in to change notification settings - Fork 446
/
package.json
106 lines (106 loc) · 3.13 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
{
"name": "react-tabs",
"version": "0.0.0-development",
"description": "An accessible and easy tab component for ReactJS",
"main": "lib/index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"scripts": {
"clean:commonjs": "rm -rf lib",
"clean:esm": "rm -rf esm",
"build:commonjs": "cross-env BABEL_OUTPUT=commonjs babel src/ --out-dir lib/ --ignore **/__tests__,**/__mocks__",
"build:esm": "babel src/ --out-dir esm/ --ignore **/__tests__,**/__mocks__",
"build": "pnpm run --sequential '/clean:.*|build:.*/'",
"format": "eslint src --fix --report-unused-disable-directives",
"lint": "eslint src --report-unused-disable-directives",
"prebump": "pnpm run --sequential '/lint|test/'",
"prepublishOnly": "pnpm run build",
"test": "cross-env BABEL_OUTPUT=commonjs jest",
"start": "webpack serve",
"website:clean": "rm -rf examples/dist",
"website:build": "cross-env BABEL_TARGET=examples NODE_ENV=production webpack",
"website:redirect": "cp -R examples/src/example examples/dist"
},
"packageManager": "pnpm@9.12.3",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-tabs.git"
},
"author": "Matt Zabriskie",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactjs/react-tabs/issues"
},
"files": [
"esm",
"lib",
"style",
"index.d.ts"
],
"homepage": "https://github.com/reactjs/react-tabs",
"keywords": [
"react",
"tabs",
"a11y",
"react-component"
],
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"hoist-non-react-statics": "3.3.2",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"less": "4.2.0",
"less-loader": "12.2.0",
"mini-css-extract-plugin": "2.9.2",
"prettier": "3.3.3",
"prism-react-renderer": "2.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-live": "4.1.7",
"react-modal": "3.16.1",
"react-test-renderer": "18.3.1",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"dependencies": {
"clsx": "^2.0.0",
"prop-types": "^15.5.0"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/.+-test\\.js$",
"testEnvironment": "jsdom",
"coveragePathIgnorePatterns": [
"/node_module/",
"/__tests__/"
]
}
}