forked from georgeOsdDev/react-fileupload-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
{
"name": "react-fileupload-progress",
"version": "0.5.0",
"description": "React component which render progress of fileupload",
"main": "./lib/index.js",
"scripts": {
"watch:example": "watchify example/app.js -dv -o example/bundle.js",
"start:example": "node example/server.js & npm run watch:example",
"test:local": "karma start",
"test": "./node_modules/.bin/karma start --browsers Firefox --single-run",
"clean": "rimraf lib",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git://github.com/georgeosddev/react-fileupload-progress"
},
"keywords": [
"react",
"react-component",
"fileupload",
"progress"
],
"author": "Takeharu.Oshida",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgeosddev/react-fileupload-progress/issues"
},
"homepage": "https://github.com/georgeosddev/react-fileupload-progress",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-react": "^7.13.0",
"express": "^4.17.1",
"karma": "^4.1.0",
"karma-browserify": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"mocha": "^6.1.4",
"multer": "^1.4.1",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"watchify": "^3.11.1"
},
"dependencies": {
"babel": "^6.23.0",
"babel-plugin-istanbul": "^5.1.4",
"core-js": "3",
"eslint-plugin-import": "^2.17.3",
"object-assign": "^4.1.1",
"prop-types": "^15.7.2",
"sinon": "^7.3.2"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}