-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 945 Bytes
/
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
{
"name": "get-nepali-number",
"version": "0.2.0",
"description": "Convert any english numeral to Nepali number",
"license": "MIT",
"repository": "https://github.com/techgaun/get-nepali-number",
"author": {
"name": "techgaun",
"email": "coolsamar207@gmail.com",
"url": "https://techgaun.com"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "xo --space 2 && NODE_ICU_DATA=node_modules/full-icu mocha",
"cover": "istanbul cover --report html node_modules/.bin/_mocha -- -u exports -R spec test.js"
},
"files": [
"index.js"
],
"keywords": [
"english-to-nepali",
"numbers",
"convert",
"numeric",
"conversion",
"nepali",
"hindu-arabic",
"arabic"
],
"dependencies": {},
"devDependencies": {
"full-icu": "^1.3.1",
"mocha": "^10.2.0",
"xo": "^0.53.1"
},
"xo": {
"envs": [
"node",
"mocha",
"browser"
]
}
}