-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"author": {
"name": "Matteo Cacciola",
"email": "[email protected]"
},
"dependencies": {
"@google-cloud/language": "^5.2.1",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs-node": "^4.4.0",
"axios": "^1.3.4",
"google-gax": "^3.5.8",
"googleapis": "^113.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"natural": "^6.3.0",
"openai": "^3.2.1",
"sentiment": "^5.0.2",
"twitter-api-v2": "^1.14.2",
"typescript": "^5.0.2",
"vader-sentiment": "^1.1.3"
},
"description": "Collection of functions for sentiment analysis",
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.11",
"@types/sentiment": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-istanbul": "^0.29.7",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"vitest": "^0.29.7"
},
"engines": {
"node": "18.12.1"
},
"files": [
"dist",
"node_modules",
"README.md",
"package.json"
],
"keywords": [
"sentiment",
"analysis",
"Twitter",
"Facebook",
"Instagram",
"TikTok",
"YouTube",
"API",
"News"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@matteocacciola/sentiment",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/matteocacciola/sentiment.git"
},
"scripts": {
"build": "tsc -p ./tsconfig-build.json",
"ci": "npm run lint && npm run build && npm run test",
"clean": "if [ -d 'dist/' ]; then rm -rf dist; fi; if [ -f 'tsconfig-build.tsbuildinfo' ]; then rm tsconfig-build.tsbuildinfo; fi",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix --ext .js,.ts .",
"prebuild": "npm run clean",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "TZ=utc NODE_ENV=test vitest run --coverage",
"test:nocoverage": "TZ=utc NODE_ENV=test vitest run --no-coverage"
},
"version": "1.4.1"
}