-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 846 Bytes
/
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
{
"author": "Minkyu Cho <[email protected]>",
"name": "synonymizer",
"description": "A Simple Synonymizer for Node.js",
"version": "0.0.3",
"main": "./lib",
"repository": {
"type": "git",
"url": "git+https://github.com/Pitzcarraldo/synonymizer.git"
},
"dependencies": {
"lodash": "^3.10.0",
"solr-synonyms" : "^0.0.2"
},
"devDependencies": {
"mocha": "^2.2.5",
"chai": "^3.0.0"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"synonym",
"synonyms",
"synonymize",
"synonymizer",
"natural language process"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Pitzcarraldo/synonymizer/issues"
},
"homepage": "https://github.com/Pitzcarraldo/synonymizer#readme",
"directories": {
"test": "test"
}
}