-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "jsrmvi",
"version": "1.0.0",
"description": "Convert Vietnamese words to Latin alphabet - Use for both Node.JS and Browser.",
"author": {
"name": "huynhsamha",
"email": "[email protected]",
"url": "https://github.com/huynhsamha"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/huynhsamha/jsrmvi/issues"
},
"homepage": "https://github.com/huynhsamha/jsrmvi",
"repository": {
"type": "git",
"url": "git+https://github.com/huynhsamha/jsrmvi.git"
},
"files": [
"dist/**/*",
"lib/**/*",
"index.js"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"rollup": "rollup -c",
"clean": "yarn clean:node && yarn clean:browser",
"dist": "yarn dist:browser",
"clean:node": "rm -rf lib",
"clean:browser": "rm -rf dist",
"dist:node": "yarn clean:node && yarn format && yarn lint && yarn build",
"dist:browser": "yarn dist:node && yarn clean:browser && yarn rollup",
"build:release:binary": "./scripts/build_release_binary.sh $npm_package_version"
},
"devDependencies": {
"prettier": "^2.0.5",
"rollup": "^2.10.8",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"keywords": [
"jsrmvi",
"removeVI",
"remove-unicode",
"remove-vietnamese",
"js-remove-vietnamese",
"remove-accents"
]
}