forked from rokoroku/node-twitter-korean-text
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "open-korean-text-node",
"version": "2.2.0",
"description": "Nodejs binding for open-korean-text via java interface.",
"main": "index.js",
"types": "lib/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "mocha --ui tdd --timeout 10000",
"build": "rm -rf lib && tsc",
"prepare": "npm run build",
"install": "node bin/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/open-korean-text/open-korean-text-wrapper-node-2"
},
"keywords": [
"nlp",
"korean",
"open-korean-text",
"twitter-korean-text"
],
"author": "Youngrok Kim <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@types/java": "^0.7.32",
"@types/node": "^9.4.7",
"mocha": "^5.0.4",
"chai": "^4.1.2",
"typescript": "^2.7.2"
},
"dependencies": {
"es6-promisify": "^6.0.0",
"java": "^0.9.0",
"node-wget": "^0.4.2"
},
"mavenDependencies": {
"scala-library": "http://central.maven.org/maven2/org/scala-lang/scala-library/2.12.4/scala-library-2.12.4.jar",
"twitter-text": "https://repo1.maven.org/maven2/com/twitter/twitter-text/1.14.7/twitter-text-1.14.7.jar",
"open-korean-text": "http://central.maven.org/maven2/org/openkoreantext/open-korean-text/2.2.0/open-korean-text-2.2.0.jar"
}
}