forked from davidemiceli/sentiment-multilang
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.35 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
57
58
59
60
61
{
"name": "@owsas/sentiment-multilang",
"version": "0.0.9",
"description": "Multilanguage AFINN-based sentiment analysis for Node.js",
"license": "MIT",
"main": "out/index.js",
"types": "out/index.d.ts",
"keywords": [
"sentiment",
"analysis",
"nlp",
"sentiment analysis",
"multilanguage"
],
"author": "davidemiceli",
"maintainers": [
"jcguarinpenaranda"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"commander": "^2.19.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"@types/latinize": "^0.2.15",
"@types/stemmer": "^1.0.1"
},
"dependencies": {
"latinize": "^0.4.0",
"stemmer": "^1.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/owsas/sentiment-multilang.git"
},
"bugs": {
"url": "https://github.com/owsas/sentiment-multilang/issues"
},
"homepage": "https://github.com/owsas/sentiment-multilang#readme"
}