-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 929 Bytes
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": "bn-number-utils",
"version": "0.2.0",
"description": "A small library to convert numeric values to Bengali numbers.",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"prebuild": "npm run test",
"build": "rollup --config",
"pretest": "rollup --config",
"test": "jest"
},
"files": [
"cjs/*",
"esm/*",
"umd/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sh4hids/bn-number-utils.git"
},
"keywords": [
"Bengali",
"numbers",
"number",
"bengali number",
"converter"
],
"author": "Shahidul Islam Majumder <hello@shahid.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sh4hids/bn-number-utils/issues"
},
"homepage": "https://github.com/sh4hids/bn-number-utils#readme",
"devDependencies": {
"jest": "^24.5.0",
"rollup": "^1.7.0",
"rollup-plugin-terser": "^4.0.4"
}
}