-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "element-resize-event",
"description": "Polyfill to make it easy to listen for element resize events",
"version": "3.0.6",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/element-resize-event/issues"
},
"devDependencies": {
"browserify": "^8.1.3",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.0"
},
"homepage": "https://github.com/KyleAMathews/element-resize-event",
"keywords": [
"element queries",
"element-query",
"event",
"resize"
],
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/element-resize-event.git"
},
"scripts": {
"prepare": "husky install",
"prettier": "prettier --write \"**/*.{md,css,scss,yaml,yml,js}\"",
"test": "echo \"Error: no test specified\" && exit 1"
}
}