-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 KB
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
82
83
84
85
86
87
{
"name": "react-render-callback",
"version": "0.0.0-semantically-released",
"description": "render-prop helper to render anything (Functions, Components, Elements, ...)",
"homepage": "https://github.com/sastan/react-render-callback#readme",
"main": "dist/react-render-callback.cjs.js",
"module": "dist/react-render-callback.esm.js",
"unpkg": "dist/react-render-callback.umd.min.js",
"typings": "typings/index.d.ts",
"author": "Sascha Tandel <s.tandel@me.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sastan/react-render-callback.git"
},
"bugs": {
"url": "https://github.com/sastan/react-render-callback/issues"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build --bundle --no-clean --size-snapshot",
"lint": "kcd-scripts lint",
"bundlesize": "bundlesize",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm test -- --updateSnapshot --coverage",
"test:build": "jest --projects other/misc-tests && npm run bundlesize",
"flowgen": "flowgen typings/index.d.ts -o flow-typed/npm/react-render-callback_v1.x.x.js.flow",
"build-and-test": "npm run build -s && npm run test:build -s",
"validate": "kcd-scripts validate lint,test:cover,build-and-test",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit"
},
"engines": {
"node": ">=8.0.0"
},
"sideEffects": false,
"peerDependencies": {
"react": "^0.14 || ^15 || ^16"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"@types/react": "^0.14 || ^15 || ^16",
"ajv": "^6.5.3",
"babel-plugin-dynamic-import-node": "^2.1.0",
"bundlesize": "^0.17.0",
"flowgen": "^1.2.2",
"kcd-scripts": "^0.44.0",
"react": "^0.14 || ^15 || ^16",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"semver": "^5.5.1"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"files": [
"dist",
"flow-typed",
"typings"
],
"bundlesize": [
{
"path": "dist/react-render-callback.umd.min.js",
"maxSize": "650 B"
}
],
"keywords": [
"react",
"render-prop",
"render-props",
"function-as-child",
"component-injection",
"facc"
],
"publishConfig": {
"access": "public"
}
}