-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "browser-font-size-observer",
"version": "0.1.1",
"author": "Artur Bień <[email protected]> (https://www.linkedin.com/in/arturbien/)",
"description": "Detect and observe changes to the browser font size setting",
"keywords": [
"detect",
"browser",
"font size",
"font"
],
"files": ["./dist"],
"repository": "[email protected]:arturbien/browser-font-size-observer.git",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/react95"
},
{
"type": "patreon",
"url": "https://www.patreon.com/arturbien"
}
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "webpack-dev-server --open",
"test": "jest",
"build": "webpack",
"prepare": "webpack"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/jsdom": "^20.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}