-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "auto-fontsize",
"version": "1.0.25",
"description": "Auto resize font to fit the parent container width",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "webpack serve",
"build": "tsc",
"test": "jest",
"update-snapshot": "jest --updateSnapshot"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"react",
"font size",
"auto font size"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"verbose": true,
"testURL": "http://localhost/"
},
"dependencies": {
"convert-css-length": "2.0.1",
"line-height": "0.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/timtong1982/auto-fontsize"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"@types/react-test-renderer": "17.0.1",
"@types/webpack-env": "1.16.0",
"html-webpack-plugin": "5.3.1",
"jest": "26.6.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-test-renderer": "17.0.1",
"source-map-loader": "2.0.1",
"ts-jest": "26.5.3",
"ts-loader": "8.0.18",
"typescript": "4.2.3",
"webpack": "5.25.1",
"webpack-cli": "4.5.0",
"webpack-dev-server": "3.11.2"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
}
}