-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "render-props",
"version": "1.1.0",
"description": "Easily and reliably support Render Props, Component Injection, and Function as a Child",
"author": "Donavon West <[email protected]> (http://donavon.com)",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"build": "babel src --out-dir lib --ignore '**/*.test.js'",
"pretest": "eslint src",
"test": "jest"
},
"keywords": [
"react",
"render props",
"render prop",
"props",
"component",
"component injection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/donavon/render-props.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/donavon/render-props/issues"
},
"homepage": "https://github.com/donavon/render-props#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.3",
"react": "^16.2.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0"
}
}