forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.39 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
{
"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",
"scripts": {
"clean:commonjs": "rimraf lib",
"clean:umd": "rimraf dist",
"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:umd": "rollup -c",
"build": "npm-run-all clean:* --parallel build:*",
"format": "eslint src --fix --report-unused-disable-directives",
"lint": "eslint src --report-unused-disable-directives",
"prebump": "run-s lint test",
"prepublishOnly": "yarn run build",
"test": "cross-env BABEL_OUTPUT=commonjs jest",
"start": "webpack serve",
"website": "run-s website:clean website:build website:redirect",
"website:clean": "rimraf examples/dist",
"website:build": "cross-env BABEL_TARGET=examples NODE_ENV=production webpack",
"website:redirect": "cp -R examples/src/example examples/dist"
},
"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": [
"dist",
"esm",
"lib",
"style",
"src"
],
"homepage": "https://github.com/reactjs/react-tabs",
"keywords": [
"react",
"tabs",
"a11y",
"react-component"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/eslint-parser": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.0.1",
"@testing-library/user-event": "14.1.0",
"babel-jest": "27.5.1",
"babel-loader": "8.2.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"hoist-non-react-statics": "3.3.2",
"html-loader": "3.1.0",
"html-webpack-plugin": "5.5.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"less": "4.1.2",
"less-loader": "10.2.0",
"mini-css-extract-plugin": "2.6.0",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-live": "2.4.1",
"react-modal": "3.14.4",
"react-test-renderer": "18.0.0",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-ignore": "1.0.10",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"clsx": "^1.1.0",
"prop-types": "^15.5.0"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/.+-test\\.js$",
"testEnvironment": "jsdom",
"coveragePathIgnorePatterns": [
"/node_module/",
"/__tests__/"
]
}
}