-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
91 lines (91 loc) · 2.34 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
{
"name": "rmc-calendar",
"version": "1.1.4",
"description": "React Mobile Calendar Component(web and react-native)",
"keywords": [
"react",
"react-component",
"react-m-calendar",
"m-calendar"
],
"homepage": "https://github.com/react-component/m-calendar",
"repository": {
"type": "git",
"url": "https://github.com/react-component/m-calendar.git"
},
"bugs": {
"url": "https://github.com/react-component/m-calendar/issues"
},
"files": [
"lib",
"es",
"assets/*.css"
],
"licenses": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8021
},
"scripts": {
"watch-tsc": "rc-tools run watch-tsc",
"compile": "rc-tools run compile --babel-runtime",
"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 --no-js-lint",
"rn-start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"update-snap": "jest --updateSnapshot",
"coverage": "jest --coverage",
"coverage:upload": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(spec|test).ts?(x)"
],
"coverageDirectory": "./coverage/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"src/**/*"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"dependencies": {
"babel-runtime": "6.x",
"rc-animate": "^2.4.1",
"rmc-date-picker": "~6.0.0-alpha.10"
},
"devDependencies": {
"@types/jest": "^21.1.2",
"jest": "^21.2.1",
"@types/enzyme": "^2.8.11",
"enzyme": "^3.1.0",
"@types/enzyme-to-json": "^1.5.0",
"enzyme-to-json": "^3.1.2",
"enzyme-adapter-react-15": "^1.0.1",
"coveralls": "^3.0.0",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"pre-commit": "1.x",
"rc-test": "^6.0.8",
"rc-tools": "^7.0.0",
"react": "^15.x",
"react-dom": "^15.x",
"react-test-renderer": "^15.x",
"stylelint-config-standard": "^17.0.0"
},
"typings": "./lib/index.d.ts",
"pre-commit": [
"lint"
]
}