-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
{
"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.14.3",
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
"babel-eslint": "10.1.0",
"babelify": "10.0.0",
"browser-sync": "2.26.14",
"browserify": "17.0.0",
"chai": "4.3.4",
"eslint": "7.28.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-react": "7.24.0",
"express": "4.17.1",
"karma": "6.3.3",
"karma-browserify": "8.0.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage": "2.0.3",
"karma-firefox-launcher": "2.1.1",
"karma-mocha": "2.0.1",
"karma-safari-launcher": "1.0.0",
"karma-spec-reporter": "0.0.32",
"mocha": "9.0.0",
"multer": "1.4.2",
"react": "17.0.2",
"react-addons-test-utils": "15.6.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"sinon": "11.1.1",
"watchify": "4.0.0"
},
"dependencies": {
"babel-plugin-istanbul": "^6.0.0",
"core-js": "3",
"eslint-plugin-import": "^2.17.3",
"object-assign": "^4.1.1",
"prop-types": "^15.7.2",
"sinon": "^11.0.0"
},
"peerDependencies": {
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}