-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
70 lines (70 loc) · 1.68 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
{
"name": "react-simpletabs",
"version": "0.7.0",
"description": "Just a simple tabs component built with React",
"author": {
"name": "Pedro Nauck",
"email": "[email protected]",
"url": "https://github.com/pedronauck"
},
"bugs": {
"url": "https://github.com/pedronauck/react-simpletabs/issues"
},
"homepage": "https://github.com/pedronauck/react-simpletabs",
"license": "MIT",
"main": "dist/react-simpletabs.js",
"repository": {
"type": "git",
"url": "git://github.com/pedronauck/react-simpletabs"
},
"keywords": [
"react",
"react-component",
"react-tabs",
"tabs",
"tab"
],
"scripts": {
"pub": "npm publish && bower register react-simpletabs [email protected]:pedronauck/react-simpletabs.git",
"bundle": "gulp webpack && gulp webpack --production",
"start": "gulp",
"test": "jest"
},
"jest": {
"scriptPreprocessor": "./utils/jsx-preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
},
"peerDependencies": {
"react": "0.12.x - 1.x || ^0.14.0 || 15.x || 16.x",
"prop-types": "15.x"
},
"dependencies": {
"classnames": "^1.2.0",
"create-react-class": "^15.6.2"
},
"devDependencies": {
"browser-sync": "^1.5.2",
"css-loader": "^0.9.0",
"extract-text-webpack-plugin": "^0.3.1",
"gulp": "^3.8.6",
"gulp-util": "^3.0.1",
"jest-cli": "^0.1.18",
"jsx-loader": "^0.12.2",
"lodash": "^2.4.1",
"react": "^16.0.0",
"react-tools": "^0.12.2",
"style-loader": "^0.8.1",
"webpack": "^1.4.4"
}
}