-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"author": "SMAKSS",
"bugs": {
"url": "https://github.com/SMAKSS/convert-numbers/issues"
},
"description": "Convert Numbers transforms Arabic and Persian numerals to English, ensuring data uniformity in multilingual environments. Ideal for user input standardization and database consistency.",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/SMAKSS/convert-numbers#readme",
"keywords": [
"number-conversion",
"digit-conversion",
"arabic-to-english-numerals",
"persian-to-english-numerals",
"multilingual-numerals",
"convert-numbers",
"numeral-transformation",
"number-standardization",
"digit-standardization",
"cross-language-numbers",
"keyboard-input-conversion",
"data-consistency",
"input-normalization",
"internationalization",
"i18n-numerals",
"digit-localization",
"numeric-data-processing",
"script-conversion",
"npm",
"yarn",
"digit",
"SMAKSS",
"number",
"numerals",
"CommonJS",
"EcmaScript",
"Typescript",
"arabic-numbers",
"persian-numbers",
"convert-to-english-numbers"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@smakss/convert-numbers",
"repository": {
"type": "git",
"url": "git+https://github.com/SMAKSS/convert-numbers.git"
},
"scripts": {
"format": "prettier --write \"**/*.+(js|json|yml|yaml|ts|md)\"",
"format:check": "prettier -l \"**/*.+(js|json|yml|yaml|ts|md)\"",
"generate": "rollup -c",
"generate:check": "yarn format && yarn lint && yarn typecheck",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --ext js,ts --max-warnings=0 .",
"lint:fix": "eslint src/**/*.ts --fix",
"setup": "yarn && husky install",
"typecheck": "tsc -b ."
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "2.1.0"
}