-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "hanspell",
"version": "0.9.7",
"description": "(주)다음과 부산대학교 인공지능연구실/(주)나라인포테크의 온라인 서비스를 이용한 한글 맞춤법 검사기.",
"homepage": "https://github.com/9beach/hanspell",
"author": {
"name": "9beach",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9beach/hanspell.git"
},
"bugs": {
"url": "https://github.com/9beach/hanspell/issues"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"all": "npm run lint && npm test",
"test": "mocha && test/cli.test.sh",
"lint": "eslint ."
},
"preferGlobal": true,
"bin": {
"hanspell-cli": "lib/cli.js"
},
"keywords": [
"한글",
"맞춤법",
"한국어",
"한국",
"Korean",
"Spell",
"hangul",
"Korea",
"spell check",
"SpellCheck"
],
"dependencies": {
"chalk": "^2.4.2",
"html-entities": "^1.2.1",
"minimatch": "^3.0.4",
"readline": "^1.3.0",
"request": "^2.65.0",
"unescape": "^1.0.1"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^9.1.2",
"prettier": "^2.2.1"
}
}