forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.62 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
{
"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",
"release": "semantic-release --branches main",
"test": "cross-env BABEL_OUTPUT=commonjs jest",
"start": "webpack serve --inline --content-base examples/ --port 8000",
"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.3.0 || ^17.0.0-0"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/eslint-parser": "7.13.14",
"@babel/plugin-external-helpers": "7.12.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.14.1",
"@babel/preset-react": "7.13.13",
"@testing-library/dom": "7.30.4",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.8",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"cross-env": "7.0.3",
"css-loader": "5.2.4",
"enzyme": "3.11.0",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"file-loader": "6.2.0",
"hoist-non-react-statics": "3.3.2",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.1",
"jest": "26.6.3",
"less": "4.1.1",
"less-loader": "8.1.1",
"mini-css-extract-plugin": "1.6.0",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-live": "2.2.3",
"react-modal": "3.13.1",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.47.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-ignore": "1.0.9",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "17.4.2",
"webpack": "5.36.2",
"webpack-cli": "4.7.0",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"clsx": "^1.1.0",
"prop-types": "^15.5.0"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/.+-test\\.js$"
}
}