-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "read-vietnamese-number",
"version": "2.1.4",
"description": "Đọc số thành chữ trong Tiếng Việt",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tonghoangvu/read-vietnamese-number.git"
},
"homepage": "https://rvn.tonghoangvu.id.vn",
"author": {
"name": "Vu Tong",
"email": "tonghoangvu@outlook.com",
"url": "https://github.com/tonghoangvu"
},
"funding": "https://github.com/sponsors/tonghoangvu",
"keywords": [
"vn",
"vietnam",
"vietnamese",
"convert",
"read",
"number",
"digit",
"text",
"language",
"rvn",
"vnd",
"currency",
"money"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"types": "./dist/cjs/index.d.ts",
"main": "./dist/cjs/index.js",
"scripts": {
"lint": "prettier -c --no-editorconfig --ignore-unknown --cache --cache-location .cache/.prettiercache --cache-strategy metadata . && eslint --max-warnings 0 --cache --cache-location .cache/.eslintcache --cache-strategy metadata .",
"test": "jest",
"clean": "del-cli -v dist/ coverage/ .cache/ *.tgz",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && echo {\"type\": \"commonjs\"} >> dist/cjs/package.json",
"dryrun": "npm publish --dry-run && npm pack -q",
"prepare": "husky install"
},
"devDependencies": {
"@jest/globals": "^29.4.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"del-cli": "^5.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}