-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.67 KB
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
{
"name": "hangul-search-js",
"version": "1.0.5",
"description": "Simple Korean text search module",
"scripts": {
"test": "jest --env=node --colors && jest-coverage-badges --output './badges'",
"build": "tsc",
"export": "tsc && webpack",
"lint": "prettier --write ./src/**/*.{ts,js}",
"release": "release-it"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"korea",
"korean",
"korean-letters",
"korean-text-processing",
"korean-nlp",
"korean-language"
],
"author": "hmmhmmhm",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "27.0.1",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.3.1",
"release-it": "^14.11.6",
"terser-webpack-plugin": "^4.0.0",
"ts-jest": "27.0.1",
"typescript": "^4.4.3",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"hangul-js": "^0.2.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmmhmmhm/hangul-search-js.git"
},
"bugs": {
"url": "https://github.com/hmmhmmhm/hangul-search-js/issues"
}
}