-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "vn-str",
"version": "0.4.0",
"description": "Vietnamese string processing library.",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "webpack && jest",
"build": "webpack",
"deploy": "webpack && yarn publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tronghieu60s/vn-str.git"
},
"keywords": [
"string",
"vietnamese",
"vietnamese-string-processing",
"number-to-text",
"remove-vietnamese-tones",
"remove-non-alphanumeric",
"str-to-telex",
"str-to-vni",
"is-vietnamese-phone-number",
"is-vietnamese-tones",
"has-offensive-words",
"vietnamese-offensive-words"
],
"author": "Trong Hieu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tronghieu60s/vn-str/issues"
},
"homepage": "https://github.com/tronghieu60s/vn-str#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"copy-webpack-plugin": "^9.0.1",
"jest": "^26.6.3",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.8.0"
}
}