forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.78 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
{
"name": "react-tabs",
"version": "2.1.1",
"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",
"create-github-release": "conventional-github-releaser -p angular",
"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": "cross-env BABEL_TARGET=rollup yarn rollup -c",
"build": "npm-run-all clean:* --parallel build:*",
"format": "eslint src --fix",
"lint": "eslint src",
"precommit": "lint-staged",
"prebump": "run-s lint test",
"prepublish": "yarn run build",
"release": "standard-version --sign",
"test": "cross-env BABEL_OUTPUT=commonjs jest",
"start": "webpack-dev-server --inline --content-base examples/",
"website": "run-s website:clean website:build website:redirect",
"website:clean": "rimraf examples/dist",
"website:build": "cross-env 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"
],
"homepage": "https://github.com/reactjs/react-tabs",
"keywords": [
"react",
"tabs",
"a11y",
"react-component"
],
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^7.0.0-beta.2",
"babel-core": "^7.0.0-beta.2",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.3.0-beta.1",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^7.0.0-beta.2",
"babel-plugin-transform-class-properties": "^7.0.0-beta.2",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.0",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-react": "^7.0.0-beta.2",
"conventional-github-releaser": "^2.0.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"hoist-non-react-statics": "^2.3.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^21.3.0-beta.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"lint-staged": "^4.0.4",
"npm-run-all": "^4.1.1",
"prettier": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-live": "^1.7.1",
"react-modal": "^3.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.2",
"rollup": "^0.51.5",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-ignore": "^1.0.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"standard-version": "^4.2.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"classnames": "^2.2.0",
"prop-types": "^15.5.0"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/.+-test\\.js$"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}