-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "fancy-textfill",
"version": "1.2.5",
"description": "Fast implementation for resizing text to fill its container.",
"repository": "https://github.com/fazouane-marouane/fancy-textfill",
"author": "Fazouane Marouane",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/fancy-textfill.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"start": "vite",
"build": "vite build",
"test-ci": "vitest run",
"test": "vitest",
"lint": "yarn dlx @biomejs/biome check --apply ./src ./tests",
"lint-ci": "yarn dlx @biomejs/biome check ./src ./tests"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@types/jquery": "^3.5.29",
"@types/node": "^20.12.2",
"@vitest/browser": "^1.4.0",
"husky": "^9.0.11",
"jquery": "^3.7.1",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vitest": "^1.4.0",
"webdriverio": "^8.35.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"packageManager": "[email protected]"
}