-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "fitext",
"version": "1.4.4",
"description": "Resizes text elements proportionally to fit any element",
"source": "src/fitext.js",
"main": "dist/fitext.cjs.js",
"module": "dist/fitext.esm.js",
"browser": "dist/fitext.umd.js",
"types": "src/types.d.ts",
"scripts": {
"dev": "npx webpack-dev-server",
"build": "klap build --no-sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pierredarrieutort/fitext.git"
},
"author": "pierredarrieutort",
"license": "ISC",
"bugs": {
"url": "https://github.com/pierredarrieutort/fitext/issues"
},
"keywords": [
"fit",
"text",
"javascript",
"html",
"css",
"resize",
"adapt",
"responsive",
"textfit",
"fittext"
],
"homepage": "https://github.com/pierredarrieutort/fitext#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"klap": "^4.7.0",
"mini-css-extract-plugin": "^0.9.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}