forked from react-component/upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
{
"name": "rc-upload",
"version": "3.0.1",
"description": "upload ui component for react",
"keywords": [
"react",
"react-component",
"react-upload",
"upload"
],
"homepage": "http://github.com/react-component/upload",
"repository": {
"type": "git",
"url": "[email protected]:react-component/upload.git"
},
"bugs": {
"url": "http://github.com/react-component/upload/issues"
},
"license": "MIT",
"files": [
"lib",
"es"
],
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8020
},
"scripts": {
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "node server",
"compile": "rc-tools run compile --babel-runtime",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"axios": "^0.19.0",
"co-busboy": "^1.3.0",
"coveralls": "^3.0.3",
"expect.js": "0.3.x",
"fs-extra": "^9.0.0",
"gh-pages": "^2.2.0",
"jest": "^20.0.1",
"pre-commit": "1.x",
"raf": "^3.4.0",
"rc-tools": "6.x",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sinon": "8.1.1",
"vinyl-fs": "^3.0.3"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5"
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"coveragePathIgnorePatterns": [
"src/IframeUploader.jsx"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
}
}