forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.77 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
{
"name": "react-tabs",
"version": "1.1.0",
"description": "React tabs component",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build:commonjs": "babel src/ --out-dir lib/ --ignore __tests__,__mocks__",
"build:umd": "webpack --config webpack.build.js",
"build:umd:min": "cross-env MINIFY=1 webpack --config webpack.build.js",
"build": "yarn run clean && yarn run build:commonjs",
"bundle": "mkdir -p dist && yarn run build:umd && yarn run build:umd:min",
"format": "prettier --write --single-quote --print-width 100 --trailing-comma all \"src/**/*.js\"",
"lint": "eslint src",
"precommit": "lint-staged",
"preversion": "yarn run lint && yarn test && yarn run build && yarn run bundle && git add dist/ && git diff --quiet --exit-code --cached || git commit -n -m 'publish: Distribution'",
"prepublish": "yarn run build",
"test": "jest",
"start": "webpack-dev-server --inline --content-base examples/"
},
"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",
"lib",
"style"
],
"homepage": "https://github.com/reactjs/react-tabs",
"keywords": [
"react",
"tabs",
"a11y",
"react-component"
],
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.0",
"babel-preset-env": "^1.3.3",
"babel-preset-react": "^6.5.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.0",
"enzyme": "^2.3.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3",
"jest-cli": "^20.0.0",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-modal": "^1.3.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.5.2",
"style-loader": "^0.18.1",
"uglifyjs-webpack-plugin": "^0.4.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"classnames": "^2.2.0",
"prop-types": "^15.5.0"
},
"jest": {
"roots": [
"src"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --print-width 100 --trailing-comma all --write",
"git add"
]
}
}