-
Notifications
You must be signed in to change notification settings - Fork 494
/
package.json
101 lines (101 loc) · 2.25 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
101
{
"name": "rc-calendar",
"version": "9.15.10",
"description": "React Calendar",
"keywords": [
"react",
"react-calendar",
"react-component",
"calendar",
"ui component",
"ui",
"component"
],
"files": [
"lib",
"es",
"assets/*.css",
"dist",
"index.d.ts"
],
"main": "lib/index",
"module": "es/index",
"homepage": "http://github.com/react-component/calendar",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:react-component/calendar.git"
},
"bugs": {
"url": "http://github.com/react-component/calendar/issues"
},
"licenses": "MIT",
"config": {
"port": 8002,
"entry": {
"rc-calendar": [
"./assets/index.less",
"./src/index.js"
]
}
},
"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",
"types": "tslint *.ts{,x} && tsc",
"coverage": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"./tests/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
},
"testURL": "http://localhost"
},
"devDependencies": {
"@types/react": "^16.3.13",
"async": "~3.1.0",
"dtslint": "^1.0.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"jest": "^22.1.4",
"mockdate": "^2.0.1",
"pre-commit": "1.x",
"rc-dialog": "^7.0.0",
"rc-select": "^9.1.5",
"rc-time-picker": "^3.1.0",
"rc-tools": "^7.0.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.0.0",
"tslint": "^5.9.1",
"typescript": "^5.0.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"classnames": "2.x",
"moment": "2.x",
"prop-types": "^15.5.8",
"rc-trigger": "^2.2.0",
"rc-util": "^4.1.1",
"react-lifecycles-compat": "^3.0.4"
},
"types": "index.d.ts"
}