-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
{
"name": "react-media-hook",
"version": "0.5.0",
"main": "index.js",
"types": "index.d.ts",
"description": "React Hook for media query",
"scripts": {
"flow": "flow",
"typescript": "tsc -p tsconfig.json --noEmit",
"size": "size-limit",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"run:example": "parcel ./example/index.html",
"prepublish": "npm run flow && npm run lint && npm run size"
},
"size-limit": [
{
"ignore": [
"react"
],
"limit": "230 B",
"path": "./index.js",
"running": false
}
],
"eslintConfig": {
"extends": [
"lessmess/lib",
"lessmess/react-hooks"
]
},
"files": [
"index.js",
"index.js.flow",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lessmess-agency/react-media-hook.git"
},
"keywords": [
"react",
"hook",
"media"
],
"author": "Ilya Lesik",
"license": "MIT",
"bugs": {
"url": "https://github.com/lessmess-agency/react-media-hook/issues"
},
"homepage": "https://github.com/lessmess-agency/react-media-hook#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-lessmess": "0.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-import-helpers": "^0.1.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.89.0",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"size-limit": "^1.3.6",
"typescript": "^3.9.7"
}
}