forked from syzer/sentiment-analyser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "ml-sentiment",
"version": "2.0.7",
"description": "Machine learner sentiment classifier, with ability to negate words, with english and german",
"main": "src/index.js",
"scripts": {
"test": "tap test/*.js",
"coverage": "./node_modules/.bin/istanbul cover node_modules/argg test/*.js && cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"coverage-local": "./node_modules/.bin/istanbul cover node_modules/argg test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syzer/sentiment-analyser.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/syzer/sentiment-analyser/issues"
},
"keywords": [
"machine learning",
"sentiment",
"analyser",
"nlp",
"ml",
"natural language processing"
],
"homepage": "https://github.com/syzer/sentiment-analyser#readme",
"devDependencies": {
"argg": "0.0.2",
"codecov.io": "^0.1.6",
"istanbul": "^0.4.0",
"tap": "^12.1.1"
},
"dependencies": {
"lodash-fp": "^0.10.4"
}
}