forked from ngokevin/react-file-reader-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "react-file-reader-input",
"version": "1.1.0",
"description": "React file input component for complete control over styling and abstraction from file reading.",
"main": "./lib/index.js",
"devDependencies": {
"babel": "^5.4.7",
"babel-runtime": "^5.8.20",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"mocha": "^2.2.5",
"react": "^15.0.0",
"react-dom": "*"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "*"
},
"scripts": {
"build:lib": "babel --stage 0 src --out-dir lib",
"pretest": "babel --stage 0 test.es6 -o test.js && npm run build:lib",
"test": "karma start",
"prepublish": "npm run build:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/ngokevin/react-file-reader-input"
},
"keywords": [
"react",
"file",
"input",
"reader",
"component",
"react-component",
"filereader",
"file-reader",
"fake"
],
"author": "Kevin Ngo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngokevin/react-file-reader-input/issues"
},
"homepage": "https://github.com/ngokevin/react-file-reader-input"
}