-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pure-render-prop-component",
"version": "2.0.1",
"description": "Use the render prop pattern without sacrificing component purity",
"main": "lib/pure-render-prop-component.js",
"files": [
"lib"
],
"engines": {
"node": ">=6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"runkitExample": "const {PureRenderPropComponent} = require('pure-render-prop-component')",
"scripts": {
"lint": "eslint .",
"test": "yarn lint && yarn run flow check && jest",
"build": "babel src --out-dir lib --ignore src/pure-render-prop-component.test.js,src/flow-tests.js && cp src/pure-render-prop-component.js.flow lib",
"prepare": "yarn build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leeds-eBooks/pure-render-prop-component.git"
},
"keywords": [
"javascript",
"functional",
"react",
"react-native",
"render-callback",
"render-prop",
"pure",
"purecomponent"
],
"author": "benstyles",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leeds-eBooks/pure-render-prop-component/issues"
},
"homepage": "https://github.com/Leeds-eBooks/pure-render-prop-component#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-mealsup": "^2.4.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-eslint-comments": "^2.0.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.68.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.3",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0",
"release-it": "^7.2.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"semi": false,
"jsxBracketSameLine": true
},
"dependencies": {
"lodash.omit": "^4.5.0",
"recompose": "^0.26.0"
},
"peerDependencies": {
"react": "^16.2.0"
}
}