forked from beizhedenglong/weird-fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "lib-unifonts",
"version": "1.0.4",
"description": "A JavaScript package that turn alphanumeric characters into weird font style.",
"keywords": [
"weird fonts, unifonts, universal, unicode, unique, styled, characters, instafonts, fancy fonts"
],
"source": "src/index.ts",
"main": "build/index.js",
"umd:main": "build/index.umd.js",
"module": "build/index.mjs",
"types": "build/src/index.d.ts",
"files": [
"build/index.js",
"build/src/index.d.ts",
"build/src/getAll.d.ts"
],
"scripts": {
"addNewFont": "node ./script/addNewFont",
"example": "parcel example/src/index.html --out-dir example/build",
"test": "jest --coverage --verbose ./tests",
"dev": "microbundle watch",
"prebuild": "yarn run test",
"build": "microbundle",
"build:example": "parcel build example/src/index.html --out-dir example/build --public-url ./",
"postversion": "git push --tags"
},
"repository": "https://github.com/r0manr0k0n/lib-unifonts.git",
"author": {
"name": "Roman Rokon",
"email": "[email protected]",
"url": "https://github.com/r0manr0k0n"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"jest": "^24.8.0",
"microbundle": "0.12.x",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"endOfLine": "crlf"
}
}