forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "react-tabs-isomorphic",
"version": "0.8.2",
"description": "A fork of react tabs, supporting Server side rendering",
"main": "lib/main.js",
"scripts": {
"clean": "rimraf lib",
"build:commonjs": "babel src/ --out-dir lib/ --ignore __tests__,__mocks__",
"build:umd": "webpack --devtool source-map --config webpack.build.js",
"build:umd:min": "cross-env MINIFY=1 webpack --devtool source-map --config webpack.build.js",
"build": "npm run clean && npm run build:commonjs",
"bundle": "mkdir -p dist && npm run build:umd && npm run build:umd:min",
"lint": "eslint src",
"preversion": "npm run lint && npm test && npm run build && npm run bundle && git add dist/ && git commit -m 'Publish: build bower distribution'",
"prepublish": "npm run build",
"test": "jest",
"start": "webpack-dev-server --inline --content-base examples/"
},
"repository": {
"type": "git",
"url": "https://github.com/neeharv/react-tabs.git"
},
"author": "Neehar Venugopal",
"license": "MIT",
"bugs": {
"url": "https://github.com/neeharv/react-tabs/issues"
},
"files": [
"dist",
"lib"
],
"homepage": "https://github.com/neeharv/react-tabs",
"keywords": [
"react",
"tabs",
"a11y",
"react-component",
"isomorphic"
],
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"cross-env": "^3.0.0",
"enzyme": "^2.3.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"jest-cli": "^16.0.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-modal": "^1.3.0",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"classnames": "^2.2.0",
"js-stylesheet": "^0.0.1"
},
"jest": {
"testPathDirs": [
"src"
]
}
}