forked from thisandagain/sentiment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 773 Bytes
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
{
"author": "Andrew Sliwinski <andrewsliwinski@acm.org>",
"name": "sentiment",
"description": "AFINN-based sentiment analysis for Node.js",
"version": "2.1.0",
"homepage": "https://github.com/thisandagain/sentiment",
"repository": {
"type": "git",
"url": "https://github.com/thisandagain/sentiment.git"
},
"keywords": [
"sentiment",
"analysis",
"nlp",
"sentiment analysis"
],
"main": "./lib/index.js",
"scripts": {
"test": "make test"
},
"dependencies": {
"afinn-165-multilingual": "git+https://github.com/dkocich/afinn-165-multilingual.git"
},
"devDependencies": {
"Sentimental": "1.0.1",
"benchmark": "^2.1.0",
"eslint": "^3.2.1",
"tap": "^7.1.2"
},
"engines": {
"node": ">=4.0"
}
}