This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "element-queries",
"version": "1.1.0",
"description": "A responsive element queries library based on modern ResizeObserver technology.",
"author": "Danian de Leeuw <danian.deleeuw@gmail.com>",
"keywords": [
"element-queries",
"responsive-components",
"javascript",
"resizeobserver",
"responsive",
"media-queries",
"queries",
"css"
],
"bugs": "https://github.com/daniandl/element-queries/issues",
"homepage": "https://github.com/daniandl/element-queries#readme",
"repository": {
"type": "git",
"url": "https://github.com/daniandl/element-queries.git"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"dist/*",
"lib/*"
],
"scripts": {
"clean": "rimraf lib dist",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "cross-env FILE_NAME=element-queries webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"lint": "eslint src --ext .js",
"test": "jest",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.3.0",
"jest": "^26.4.2",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
}