forked from react-component/tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "rc-tabs",
"version": "9.2.4",
"description": "tabs ui component for react",
"keywords": [
"react",
"react-component",
"react-tabs"
],
"files": [
"lib",
"es",
"dist",
"assets/index.css"
],
"main": "./lib/index",
"module": "./es/index",
"homepage": "http://github.com/react-component/tabs",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:react-component/tabs.git"
},
"bugs": {
"url": "http://github.com/react-component/tabs/issues"
},
"licenses": "MIT",
"config": {
"port": 8002,
"entry": {
"rc-tabs": [
"./src/index.js",
"./assets/index.less"
]
}
},
"scripts": {
"dist": "rc-tools run dist",
"build": "rc-tools run build",
"compile": "rc-tools run compile --babel-runtime",
"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-test run karma",
"saucelabs": "rc-test run saucelabs",
"test": "jest",
"updateSn": "jest --updateSnapshot",
"chrome-test": "rc-test run chrome-test",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"collectCoverageFrom": [
"src/*"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"devDependencies": {
"coveralls": "^2.11.16",
"cross-env": "^5.0.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.0.0",
"expect.js": "~0.3.1",
"fastclick": "~1.0.6",
"history": "^1.17.0",
"jest": "^19.0.2",
"pre-commit": "1.x",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"rc-test": "^6.0.1",
"rc-tools": "6.x",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-sortablejs": "^1.3.6",
"sortablejs": "^1.7.0",
"react-router": "^3.0.0",
"react-test-renderer": "^16.0.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"classnames": "2.x",
"create-react-class": "15.x",
"lodash": "^4.17.5",
"prop-types": "15.x",
"rc-hammerjs": "~0.6.0",
"rc-util": "^4.0.4",
"warning": "^3.0.0"
}
}