-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "legit-tabs",
"version": "0.2.4",
"description": "tabs, done right",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --stage 0 --out-dir lib;",
"prepublish": "babel src --stage 0 --out-dir lib;",
"dev-server": "webpack-dev-server --config ./example/server.config.js --hot --port 8881",
"example": "webpack --config ./example/example.config.js",
"test": "mocha --opts ./mocha.opts; eslint ./src/ --ext .jsx,.js --global require,exports:true"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/legitcode/tabs.git"
},
"keywords": [
"react-tabs",
"react-component",
"react",
"table",
"react-table",
"bootstrap"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/legitcode/tabs/issues"
},
"homepage": "https://github.com/legitcode/tabs#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"css-loader": "^0.18.0",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"expect": "^1.8.0",
"mocha": "^2.2.5",
"mocha-babel": "^3.0.0",
"node-jsdom": "^3.1.5",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"react": ">=0.13.3"
}
}