-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
65 lines (65 loc) · 1.87 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
{
"author": "Vitalii Maslianok <[email protected]> (https://github.com/maslianok)",
"version": "4.4.3",
"name": "react-responsive-tabs",
"description": "React responsive tabs",
"license": "MIT",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/maslianok/react-responsive-tabs/issues"
},
"directories": {
"example": "examples"
},
"homepage": "https://github.com/maslianok/react-responsive-tabs",
"keywords": [
"react",
"responsive",
"tabs",
"tab"
],
"maintainers": [
"maslianok <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maslianok/react-responsive-tabs.git"
},
"peerDependencies": {
"react": "^15.1.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.1.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react-resize-detector": "^6.7.5"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "babel src --out-dir lib",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir lib/esm",
"clean": "rimraf lib",
"lint": "eslint -c .eslintrc src",
"test": "npm run lint && npm run clean && npm run build"
}
}