This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
forked from tjphopkins/react-simpletabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "react-simpletabs",
"version": "0.8.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": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
},
"dependencies": {
"classnames": "^1.2.0"
},
"devDependencies": {
"babel-core": "^5.8.34",
"babel-jest": "^5.3.0",
"babel-loader": "^5.4.0",
"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.8.0",
"lodash": "^2.4.1",
"react": "^0.13.3",
"react-tools": "^0.12.2",
"style-loader": "^0.8.1",
"webpack": "^1.12.8"
}
}