forked from react-component/tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.61 KB
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": "rc-tabs",
"version": "7.3.0",
"description": "tabs ui component for react",
"keywords": [
"react",
"react-component",
"react-tabs"
],
"files": [
"lib",
"assets/*.css"
],
"main": "./lib/index",
"homepage": "http://github.com/react-component/tabs",
"author": "yiminghe@gmail.com",
"repository": {
"type": "git",
"url": "git@github.com:react-component/tabs.git"
},
"bugs": {
"url": "http://github.com/react-component/tabs/issues"
},
"licenses": "MIT",
"config": {
"port": 8002
},
"scripts": {
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"watch": "rc-tools run watch",
"karma": "rc-tools run karma",
"saucelabs": "rc-tools run saucelabs",
"test": "jest",
"updateSn": "jest --updateSnapshot",
"chrome-test": "rc-tools run chrome-test",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/*"
]
},
"devDependencies": {
"coveralls": "^2.11.16",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.5.0",
"expect.js": "~0.3.1",
"fastclick": "~1.0.6",
"history": "^1.17.0",
"jest": "^19.0.2",
"pre-commit": "1.x",
"rc-tools": "5.x",
"react": "15.x",
"react-addons-test-utils": "15.x",
"react-dom": "15.x",
"react-router": "2.x"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"classnames": "2.x",
"react-hammerjs": "~0.5.0"
}
}