-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "any-number-to-words",
"version": "2.0.5",
"description": "A string based number to word converter that can convert pretty large numbers to words in several locales. String is it's limit.",
"main": "cjs/index.js",
"module": "src/index.js",
"scripts": {
"test": "echo \"No test specified\"",
"clean": "shx rm -rf cjs",
"build": "npm run clean && babel src -d cjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"number to words",
"converter",
"tool",
"convert numbers",
"multilingual",
"number",
"string",
"parse",
"english",
"bengali",
"bangla",
"hindi"
],
"author": "Ashutosh Biswas (https://ashutoshbiswas.netlify.app/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashutoshbw314/any-number-to-words/issues"
},
"homepage": "https://any-number-to-words.netlify.app/",
"repository": "github:ashutoshbw314/any-number-to-words",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"babel-plugin-add-module-exports": "^1.0.4",
"shx": "^0.3.3"
}
}