-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "react-tab-panel",
"version": "1.0.4",
"description": "React TabPanel",
"main": "lib/index.js",
"dependencies": {
"object-assign": "^2.0.0",
"react-basic-tabs": "git://github.com/radubrehar/react-basic-tabs",
"react-style-normalizer": "^1.1.4"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"devDependencies": {
"css-loader": "^0.9.0",
"extract-text-webpack-plugin": "^0.3.4",
"gulp": "^3.8.11",
"gulp-react": "^3.0.0",
"http-server": "^0.7.3",
"jsx-loader": "^0.12.2",
"style-loader": "^0.8.2",
"stylus-loader": "^0.4.0",
"webpack": "^1.7.2",
"webpack-dev-server": "^1.7.0"
},
"scripts": {
"test": "make",
"lib": "./node_modules/.bin/gulp",
"dist": "./node_modules/.bin/webpack --progress --colors --config dist.config.js",
"dist.min": "./node_modules/.bin/webpack --progress --colors --optimize-minimize --optimize-occurence-order --optimize-dedupe --config dist.min.config.js",
"build-style": "./node_modules/.bin/webpack --progress --colors --config build-style.config.js",
"build": "npm run dist && npm run dist.min && npm run lib",
"serve": "./node_modules/.bin/http-server -p 9091",
"dev": "./node_modules/.bin/webpack-dev-server --progress --colors --port 9090 --content-base http://localhost:9091"
},
"repository": {
"type": "git",
"url": "https://github.com/radubrehar/react-tab-panel"
},
"keywords": [
"react",
"tabs",
"tab-panel",
"tab",
"panel",
"react-component",
"tabpanel",
"tabbed"
],
"author": "Radu Brehar",
"license": "MIT",
"bugs": {
"url": "https://github.com/radubrehar/react-tab-panel/issues"
},
"homepage": "https://github.com/radubrehar/react-tab-panel"
}