This repository has been archived by the owner on Sep 25, 2021. It is now read-only.
forked from react-component/slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.81 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
{
"name": "rc-slider",
"version": "8.2.0",
"description": "Slider UI component for React",
"keywords": [
"react",
"react-component",
"react-slider",
"slider"
],
"homepage": "https://react-component.github.io/slider/",
"repository": {
"type": "git",
"url": "git@github.com:react-component/slider.git"
},
"bugs": {
"url": "http://github.com/react-component/slider/issues"
},
"files": [
"assets/*.css",
"lib",
"es",
"dist"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index",
"entry": {
"rc-slider": [
"./assets/index.less",
"./src/index.js"
]
},
"style": "./assets/index.css",
"config": {
"port": 8005
},
"scripts": {
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"compile": "rc-tools run compile --babel-runtime",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"test": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"devDependencies": {
"coveralls": "^2.11.15",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.1",
"jest": "^18.1.0",
"pre-commit": "1.x",
"rc-tools": "6.x",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-test-renderer": "^15.5.4"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5",
"prop-types": "^15.5.4",
"rc-tooltip": "^3.4.2",
"rc-util": "^4.0.4",
"shallowequal": "^1.0.1",
"warning": "^3.0.0"
}
}