-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
65
66
67
68
69
70
{
"name": "koalanlp",
"version": "2.1.3",
"description": "Node.js wrapper for KoalaNLP (An integrated API for processing Korean in with Kotlin/Java/Scala)",
"author": {
"name": "koalanlp"
},
"repository": {
"type": "git",
"url": "git://github.com/koalanlp/nodejs-support.git"
},
"bugs": {
"url": "http://github.com/koalanlp/nodejs-support/issues"
},
"main": "./index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"compile": "./node_modules/.bin/babel -d ./ src/",
"jsdoc": "rm -rf docs/* && ./node_modules/jsdoc/jsdoc.js -c .jsdoc.json && git add docs/*"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"korean",
"koalanlp",
"natural language processing",
"sentence",
"tagger",
"parser",
"한국어",
"형태소",
"품사분석",
"구문분석",
"의존구문",
"의미역",
"개체명"
],
"dependencies": {
"@babel/polyfill": "^7.7.0",
"core-js": "2",
"global": "^4.4.0",
"java": "^0.12.0",
"node-java-maven": "^0.1.1",
"request": "^2.88.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"codecov": "^3.6.1",
"docdash": "^1.1.1",
"graphlib": "^2.1.8",
"iconv-lite": "^0.5.0",
"jest": "^24.9.0",
"jsdoc": "^3.6.3",
"regenerator-runtime": "^0.13.3",
"should": "^13.2.3"
}
}