-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
77 lines (77 loc) · 2.18 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
73
74
75
76
77
{
"name": "fontawesome-subset",
"version": "4.4.0",
"description": "Utility to create subsets for FontAwesome and FontAwesome Pro.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build-watch": "tsc -w -p tsconfig.build.json",
"eslint": "eslint \"src/**\"",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"pretty-quick": "pretty-quick",
"prettier-check": "pretty-quick --check",
"test": "jest",
"test-watch": "jest --watch"
},
"author": {
"name": "Logan Graham",
"email": "loganparkergraham@gmail.com",
"url": "https://github.com/omacranger"
},
"files": [
"dist"
],
"dependencies": {
"lodash": ">=4.17.21",
"mkdirp": "^2.1.6",
"subset-font": "^2.0.0",
"yaml": "^2.2.1"
},
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/omacranger/fontawesome-subset.git"
},
"keywords": [
"font",
"awesome",
"fontawesome",
"fontawesome pro",
"subset",
"subsetter",
"icon font",
"optimize"
],
"peerDependencies": {
"@fortawesome/fontawesome-free": ">=5.12.0",
"@fortawesome/fontawesome-pro": ">=5.12.0"
},
"peerDependenciesMeta": {
"@fortawesome/fontawesome-free": {
"optional": true
},
"@fortawesome/fontawesome-pro": {
"optional": true
}
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@types/jest": "^29.5.0",
"@types/node": "~18.15.10",
"@types/opentype.js": "^1.3.3",
"@types/subset-font": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"compare-versions": "^5.0.3",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"opentype.js": "^1.3.4",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
}
}