-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 998 Bytes
/
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
{
"name": "react-attached-properties",
"version": "0.0.4",
"description": "A React pattern that can be applied to elements that are in a Container-/-Content relationship to attach information to nested elements that is needed and understood by the container.",
"keywords": [
"react",
"pattern"
],
"homepage": "https://github.com/teetotum/react-attached-properties",
"bugs": "https://github.com/teetotum/react-attached-properties/issues",
"license": "MIT",
"main": "dist/react-attached-properties.js",
"types": "types.d.ts",
"author": "Martin Winkler",
"repository": "github:teetotum/react-attached-properties",
"scripts": {
"dev": "webpack",
"build": "webpack"
},
"dependencies": {
"uuid": "*"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"core-js": "3.6.5",
"babel-loader": "8.1.0"
},
"peerDependencies": {
"react": "^16.8"
}
}