-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "vite-plugin-font-optimization",
"version": "0.0.6",
"author": "mufeng <mufeng.me@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iMuFeng/vite-plugin-font-optimization.git"
},
"bugs": {
"url": "https://github.com/iMuFeng/vite-plugin-font-optimization/issues"
},
"homepage": "https://github.com/iMuFeng/vite-plugin-font-optimization#readme",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -p tsconfig-build.json",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint src --ext ts --fix",
"test": "jest",
"cov": "jest --coverage"
},
"peerDependencies": {
"got": "11.8.5",
"node-html-parser": "^5.2.0",
"vite": "^2.9.13"
},
"dependencies": {
"got": "11.8.5",
"hpagent": "^1.0.0",
"node-html-parser": "^5.2.0",
"vite": "^2.9.13"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"coveralls": "^3.1.1",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}