-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.94 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
{
"name": "@typehaus/metropolis",
"version": "12.0.0-next.7",
"license": "Unlicense",
"author": "chrismsimpson",
"private": true,
"contributors": [
{
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://typehaus.org"
},
{
"name": "Chris M. Simpson",
"email": "chris.m.simpson@icloud.com",
"url": "https://github.com/chrismsimpson"
}
],
"repository": "typehaus/metropolis",
"bugs": "https://github.com/typehaus/metropolis/issues",
"homepage": "https://typehaus.org/metropolis",
"packageManager": "pnpm@6.23.6",
"scripts": {
"test": "pnpm lint",
"build:css": "node bin/build",
"build:docs": "pnpm dev -C docs",
"lint": "prettier --check 'dist/**/*.{ts,js,css,json,md,yml,yaml}'",
"format": "prettier --write 'dist/**/*.{ts,js,css,json,md,yml,yaml}'",
"preversion": "pnpm format && pnpm lint",
"version": "git add --all",
"release:ver": "pnpm version prerelease --preid=next -m '🔖 %s' --no-git-checks --sign-git-tag --git-tag-version --allow-same-version --force",
"release:pre": "node bin/prepare",
"release:npm": "pnpm publish --no-git-checks --registry=https://registry.npmjs.org -C dist/css",
"release:gpr": "pnpm publish --ignore-scripts --no-git-checks --registry=https://npm.pkg.github.com -C dist/css && pnpm clean",
"release": "pnpm release:ver && pnpm release:pre && pnpm release:npm && pnpm release:gpr && git push --follow-tags",
"clean": "rm -rf node_modules && rm -rf dist/css/[a-z]*.css package.json license* readme.md"
},
"main": "./dist/css/index.css",
"types": "./index.d.ts",
"description": "Modern, geometric typeface. Designed by Chris M. Simpson, updated and maintained by @typehaus.",
"keywords": [
"font",
"type",
"typeface",
"metropolis",
"geometric",
"modern",
"typehaus",
"typography",
"sans-serif",
"glyphs",
"woff",
"woff2"
],
"prettier": "@brlt/prettier",
"devDependencies": {
"@brlt/prettier": "^1.6.4",
"webfont": "11.2.26"
}
}