-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "react-simple-file-input",
"version": "2.1.0",
"description": "Simple wrapper for the HTML input tag and HTML5 FileReader API",
"main": "index.js",
"scripts": {
"prepublish": "rm -rf cjs && npm run build-development && npm run build-production",
"build-development": "BABEL_ENV=development NODE_ENV=development rollup -c",
"build-production": "BABEL_ENV=production NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greena13/react-simple-file-input.git"
},
"keywords": [
"file",
"upload",
"FileReader",
"React"
],
"files": [
"cjs",
"package.json",
"README.md",
"LICENSE",
"index.d.ts",
"index.js"
],
"typings": "./index.d.ts",
"dependencies": {
"prop-types": "^15.5.7"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"react": ">= 0.14.9"
},
"author": "Aleck Greenham",
"license": "ISC",
"bugs": {
"url": "https://github.com/greena13/react-simple-file-input/issues"
},
"homepage": "https://github.com/greena13/react-simple-file-input#readme"
}