forked from thisandagain/sentiment
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.53 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
{
"author": "Marcello Barile <[email protected]>",
"name": "multilang-sentiment",
"description": "Multi language AFINN-based sentiment analysis for Node.js",
"version": "2.0.0",
"license": "MIT",
"homepage": "https://github.com/marcellobarile/multilang-sentiment",
"repository": {
"type": "git",
"url": "https://github.com/marcellobarile/multilang-sentiment.git"
},
"keywords": [
"multilang sentiment",
"multi language sentiment",
"multilanguage sentiment",
"sentiment",
"analysis",
"nlp",
"sentiment analysis"
],
"main": "./lib/index.js",
"scripts": {
"benchmark": "node ./test/benchmark/performance.js",
"build": "node ./build/build.js",
"coverage": "npx tap ./test/{integration,unit}/*.js --coverage --coverage-report=lcov",
"lint": "npx eslint ./lib/*.js ./build/*.js ./test/**/*.js",
"lint:fix": "npx eslint --fix ./lib/*.js ./build/*.js ./test/**/*.js",
"prepublishOnly": "npm run test:all",
"pretest": "npm run lint",
"test": "npx tap ./test/{unit,integration}/*.js",
"test:unit": "npx tap ./test/unit/*.js",
"test:integration": "npx tap ./test/integration/*.js",
"test:all": "npx npm-run-all validate benchmark test:unit test:integration",
"validate": "node ./test/benchmark/validate.js"
},
"devDependencies": {
"Sentimental": "1.0.1",
"async": "^3.2.0",
"benchmark": "^2.1.4",
"tap": "^15.0.9"
},
"dependencies": {
"fuse.js": "^6.4.6",
"wink-tokenizer": "^5.2.3"
},
"engines": {
"node": ">=4.0"
}
}