-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "layout-with-a-hat",
"version": "0.0.4",
"description": "A higher order component to add different layouts to your pages and automatically fills meta tags including og / twitter meta tags to every single page with react-helmet.",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build": "rm -rf dist && SET \"NODE_ENV=production\"=production && babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/YahiaElTai/layout-with-a-hat.git"
},
"bugs": {
"url": "https://github.com/YahiaElTai/layout-with-a-hat/issues"
},
"homepage": "https://github.com/YahiaElTai/layout-with-a-hat#readme",
"keywords": [
"react-helmet",
"higher order component",
"layout wrapper",
"react helmet layout wrapper",
"meta",
"higher",
"layout",
"react layout",
"og",
"open graph",
"twitter"
],
"author": "Yahia El Tai",
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.8.6"
}
}