forked from Planeshifter/tweet-sentiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "@planeshifter/tweet-sentiment",
"version": "0.2.5",
"description": "SVM Classifier to Detect Sentiment of Tweets",
"main": "lib/index.js",
"preferGlobal": "true",
"bin": {
"tweet-sentiment": "./bin/tweet-sentiment"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"prepublish": "make all",
"postinstall": "make download",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Planeshifter/tweet-sentiment.git"
},
"keywords": [
"sentiment-analysis",
"tweets",
"twitter",
"social-media",
"NLP",
"text-mining"
],
"author": "Philipp Burckhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/Planeshifter/tweet-sentiment/issues"
},
"homepage": "https://github.com/Planeshifter/tweet-sentiment",
"dependencies": {
"commander": "^2.7.1",
"csv-parse": "^0.1.0",
"e": "0.0.4",
"emotional-emoticons": "0.0.1",
"lodash": "^3.6.0",
"node-svm": "^2.1.4",
"plus_arrays": "^0.1.5",
"pos": "^0.1.9",
"ramda": "^0.13.0",
"svm": "^0.1.1"
},
"devDependencies": {
"babel": "^4.7.16",
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1"
}
}