forked from travisdmathis/react-file-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "react-file-reader",
"version": "1.1.4",
"description": "A flexible ReactJS component for handling styled HTML file inputs.",
"main": "index.js",
"repository": "[email protected]:GrillWork/react-file-reader.git",
"author": "Grillwork Inc",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.7.6",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.1",
"create-react-class": "^15.5.0",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"react": "^15.5.0",
"react-addons-test-utils": "^15.5.0",
"react-dom": "^15.5.0",
"webpack": "^2.4.1"
},
"scripts": {
"build": "./node_modules/.bin/babel ReactFileReader.js -o index.js",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"prop-types": "^15.5.0"
}
}