-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 887 Bytes
/
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
{
"name": "french-sentiment-analysis",
"description": "Sentiment analysis is the process of detecting positive or negative sentiment in text",
"version": "1.1.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Nicolas ESTEBE",
"license": "MIT",
"keywords": [
"sentiment",
"analysis",
"french"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nestebe/french-sentiment-analysis.git"
},
"scripts": {
"dev": "ts-node-dev --respawn -- src/app.ts",
"build": "tsc",
"test": "tsc && jest",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"dependencies": {
"natural": "^5.1.1",
"stopword": "^1.0.11"
},
"devDependencies": {
"@types/natural": "^5.0.0",
"@types/stopword": "^1.0.2",
"jest": "^27.2.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
}
}