forked from forzagreen/n2words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.62 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
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
{
"name": "@asutrick/n2words",
"version": "1.16.4",
"description": "n2words converts a numerical number into a written one, supports 27 languages and has zero dependencies.",
"keywords": [
"n2words",
"convert",
"number",
"word",
"text",
"natural",
"language",
"english",
"french",
"spanish",
"german",
"portuguese",
"italian",
"turkish",
"russian",
"czech",
"norwegian",
"danish",
"polish",
"ukrainian",
"lithuanian",
"latvian",
"arabic",
"hebrew",
"korean",
"dutch",
"serbian",
"farsi",
"persian",
"chinese",
"hungarian",
"indonesian",
"croatian",
"vietnamese",
"azerbaijani"
],
"homepage": "https://github.com/forzagreen/n2words#readme",
"bugs": {
"url": "https://github.com/forzagreen/n2words/issues"
},
"repository": "github:forzagreen/n2words",
"license": "MIT",
"author": "Wael TELLAT",
"contributors": [
"Tyler Vigario (https://github.com/TylerVigario)"
],
"sideEffects": false,
"type": "module",
"exports": {
".": "./lib/n2words.js",
"./i18n/*.js": "./lib/i18n/*.js"
},
"jsdelivr": "dist/n2words.js",
"unpkg": "dist/n2words.js",
"files": [
"lib/*",
"dist/*",
"types/*"
],
"scripts": {
"bench": "node bench.js",
"build": "webpack --config webpack.config.js --progress",
"build:types": "npx -p typescript tsc lib/n2words.js dist/n2words.js --target es6 --module esnext --allowJs --declaration --emitDeclarationOnly",
"coverage": "c8 ava",
"lint": "eslint --config .eslintrc.json lib/ test/ examples/ bench.js",
"test": "ava --verbose",
"test:cjs": "ava --verbose test/import.cjs",
"test:core": "ava --verbose test/core.js",
"test:i18n": "ava --verbose test/i18n.js",
"test:web": "ava --verbose test/web.js"
},
"ava": {
"files": [
"test/*",
"!test/web.js"
]
},
"c8": {
"all": true,
"include": [
"lib/"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"ava": "^5.3.1",
"babel-loader": "^9.1.3",
"benchmark": "^2.1.4",
"c8": "^8.0.0",
"chalk": "^5.3.0",
"chromedriver": "^114.0.2",
"core-js": "^3.31.1",
"eslint": "^8.44.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.3",
"eslint-plugin-node": "^11.1.0",
"microtime": "^3.1.1",
"selenium-webdriver": "^4.10.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": "16 || 18 || >=20"
}
}