-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
{
"name": "formatchange",
"version": "2.3.1",
"description": "Utility that monitors named CSS media-query breakpoints and triggers event callbacks when a media-format change occurs.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:ts": "tsc --project ./tsconfig.build.json",
"build": "yarn install && tsc --noEmit && yarn run build:ts",
"dev": "yarn install && yarn run concurrently \"tsc --noEmit --watch --preserveWatchOutput\" \"yarn run build:ts --watch\"",
"prepublishOnly": "yarn run build"
},
"repository": {
"type": "git",
"url": "git@github.com:maranomynet/formatchange.git"
},
"keywords": [
"JavaScript",
"events",
"media-queries",
"responsive-web-design"
],
"author": "Hugsmiðjan ehf. <hugsmidjan@hugsmidjan.is> (http://www.hugsmidjan.is/)",
"contributors": [
"Már Örlygsson <mar.nospam@anomy.net>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/maranomynet/formatchange/issues"
},
"homepage": "https://github.com/maranomynet/formatchange",
"devDependencies": {
"@hugsmidjan/hxmstyle": "^8.3.0",
"@types/node": "^16.18.58",
"@types/react": "^17.0.39",
"concurrently": "^7.0.0",
"eslint": "^8.56.0",
"prettier": "^2.8.8",
"react": "^17.0.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"exports": {
".": "./formatchange.js",
"./react": "./react.js"
},
"hxmstyle": {
"options": {
"react": true,
"typescript": true
}
}
}