-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "string-to-unicode-variant",
"version": "1.0.8-4",
"description": "Javascript function to convert a string into different kind of ⓤⓝⓘⓒⓞⓓⓔ variants.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/degola/toUnicodeVariant.git"
},
"keywords": [
"string",
"manipulation",
"unicode",
"variants",
"bold",
"string",
"italic",
"string",
"strikethrough",
"string"
],
"author": "David Konrad",
"contributors": [
{
"name": "Sebastian Lagemann",
"url": "https://github.com/degola",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/degola/toUnicodeVariant/issues"
},
"homepage": "https://github.com/degola/toUnicodeVariant#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}