-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
125 lines (125 loc) · 2.85 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
117
118
119
120
121
122
123
124
125
{
"name": "n2words",
"version": "1.21.0",
"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": {
"type": "git",
"url": "git+https://github.com/forzagreen/n2words.git"
},
"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/*"
],
"scripts": {
"bench": "node bench.js",
"build": "webpack --progress",
"build:types": "npx -p typescript tsc lib/n2words.js dist/n2words.js --target es6 --module nodenext --allowJs --declaration --emitDeclarationOnly",
"coverage": "c8 ava",
"docs": "jsdoc -c ./conf.json",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint lib/ test/ examples/ *.js",
"lint:md": "markdownlint-cli2 *.md",
"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.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.6.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"ava": "^6.1.3",
"babel-loader": "^9.1.3",
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"chromedriver": "^126.0.4",
"core-js": "^3.37.1",
"eslint": "^9.6.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-jsdoc": "^48.5.2",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-unicorn": "^54.0.0",
"jsdoc": "^4.0.3",
"markdownlint-cli2": "^0.13.0",
"microtime": "^3.1.1",
"selenium-webdriver": "^4.22.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": "^18 || ^20 || >=22"
}
}