-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.04 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.04 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@codeewithmert/turkish-tools-pro",
"version": "1.1.0",
"description": "Kapsamlı Türkçe veri işleme, doğrulama, formatlama ve sahte Türkçe veri üretme araçları kütüphanesi",
"main": "index.js",
"scripts": {
"test": "node test.js",
"start": "node index.js",
"lint": "eslint *.js",
"format": "prettier --write *.js",
"docs": "jsdoc -c jsdoc.json",
"build": "npm run lint && npm run test",
"publish": "npm publish --access public"
},
"keywords": [
"turkish",
"türkçe",
"turkish-tools",
"validation",
"formatting",
"faker",
"data-processing",
"text-processing",
"address",
"phone",
"iban",
"tc-kimlik",
"plaka",
"currency",
"date",
"encryption",
"statistics",
"network",
"utilities"
],
"author": {
"name": "Mert Demir",
"email": "mertdmrrrs@hotmail.com",
"url": "https://github.com/codeewithmert/turkish-tools"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codeewithmert/turkish-tools.git"
},
"bugs": {
"url": "https://github.com/codeewithmert/turkish-tools/issues"
},
"homepage": "https://github.com/codeewithmert/turkish-tools#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^2.8.0",
"jsdoc": "^3.6.0"
},
"files": [
"*.js",
"README.md",
"LICENSE"
],
"directories": {
"lib": ".",
"test": "test"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/turkish-tools"
},
"contributors": [
{
"name": "Turkish Tools Team",
"email": "info@turkish-tools.com"
}
],
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"man": "./man/turkish-tools.1",
"config": {
"unsafe-perm": false
},
"preferGlobal": false,
"private": false,
"browser": {
"crypto": false,
"dns": false,
"net": false
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"projectStructure": "src/ altında her modül için ayrı klasör ve ana dosya (ör: src/alfabet/alfabet.js), kökte index.js, test.js, README.md, LICENSE, .gitignore. Tüm modüller index.js üzerinden dışa aktarılır.",
"features": [
"Türk alfabesi ve karakter işlemleri",
"Türkçe tarih ve saat formatlama",
"IBAN, telefon, TC kimlik, plaka doğrulama",
"Argo/küfür filtresi ve sansür",
"Sayıdan yazıya ve para birimi işlemleri",
"Plaka-şehir eşleştirme",
"Türkçe kelime heceleme ve stopwords temizleme",
"Sahte veri üretici (isim, adres, telefon, e-posta, vs.)",
"Adres ve metin işleme, analiz ve özetleme",
"Gelişmiş veri doğrulama ve şifreleme araçları",
"Ağ/internet yardımcıları (IP, domain, port, DNS, vs.)",
"Temel ve ileri istatistik fonksiyonları",
"Modüler, genişletilebilir ve test edilebilir yapı"
]
}