-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.34 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-equalizer",
"version": "1.3.0",
"description": "Pure React Match Height Component",
"repository": {
"type": "git",
"url": "https://github.com/patrickgalbraith/react-equalizer.git"
},
"keywords": [
"react",
"equalizer",
"equalheight",
"matchheight"
],
"author": "Patrick Galbraith",
"homepage": "https://github.com/patrickgalbraith/react-equalizer",
"bugs": {
"url": "https://github.com/patrickgalbraith/react-equalizer/issues"
},
"license": "MIT",
"main": "./lib/equalizer.js",
"scripts": {
"test": "jest",
"prepublish": "node ./node_modules/babel-cli/bin/babel.js src --out-dir lib"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs"
]
},
"peerDependencies": {
"react": ">0.14.0",
"react-dom": ">0.14.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-jest": "^6.0.1",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"jest-cli": "^0.8.2",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}