generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.77 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
68
69
70
71
72
{
"name": "font-range",
"description": " Font subset with google font's ML result.",
"version": "1.0.2",
"author": "black7375 <[email protected]>",
"license": "MIT",
"files": [
"build/**"
],
"keywords": [
"font",
"fonts",
"webfonts",
"subset",
"woff",
"woff2",
"css",
"unicode-range",
"fonttools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/black7375/font-range.git"
},
"bugs": {
"url": "https://github.com/black7375/font-range/issues"
},
"homepage": "https://github.com/black7375/font-range#readme",
"engines": {
"node": ">= 16.16"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"command-exists": "^1.2.9",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"tsutils": "^3.21.0",
"typescript": "^4.9.4"
},
"main": "build/main.js",
"typings": "build/main.d.ts",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest --watch"
},
"dependencies": {
"@esm2cjs/execa": "^6.1.1-cjs.1",
"@esm2cjs/node-fetch": "^3.3.1",
"@types/css-tree": "^2.3.1",
"css-tree": "^2.3.1",
"piscina": "^3.2.0",
"tslib": "^2.6.1"
},
"volta": {
"node": "16.16.0",
"npm": "9.2.0"
},
"packageManager": "[email protected]"
}