-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "system-font-stack",
"version": "1.0.5",
"description": "Give your web app a native look by using the font family of the users OS ",
"main": "bundle.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:module": "tsc --removeComments -d -m es2015 -t es2017 index.ts",
"postbuild:module": "cp index.js bundle.mjs",
"build:main": "tsc --removeComments -m umd index.ts",
"postbuild:main": "mv index.js bundle.js",
"prepublishOnly": "yarn build:main && yarn build:module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stipsan/system-font-stack.git"
},
"keywords": [
"typography",
"fonts",
"font",
"family",
"font-family"
],
"author": "Stian Didriksen <stipsan@gmail.com> (https://stipsan.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stipsan/system-font-stack/issues"
},
"homepage": "https://github.com/stipsan/system-font-stack#readme",
"devDependencies": {
"typescript": "^2.6.1"
}
}