-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 1021 Bytes
/
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
{
"name": "typekit-cache",
"version": "1.14.1",
"description": "Keeps a site's Typekit in localStorage and injects it on page load. Eliminates the annoying Flash Of Invisible/Unstyled Text (FOUT) and provides better UX for slow or offline connections.",
"main": "typekit-cache.js",
"directories": {
"test": "test"
},
"devDependencies": {
"eslint": "^5.16.0",
"prettier": "^1.17.0",
"terser": "^3.17.0"
},
"scripts": {
"format": "prettier --write typekit-cache.js",
"lint": "eslint typekit-cache.js",
"build": "terser typekit-cache.js -o typekit-cache.min.js --compress --mangle",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morris/typekit-cache.git"
},
"keywords": [
"typekit"
],
"author": "Morris Brodersen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/morris/typekit-cache/issues"
},
"homepage": "https://github.com/morris/typekit-cache#readme"
}