-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
39
40
41
42
{
"name": "nlp-sentiment",
"version": "1.0.1",
"description": "A very tiny, fast and useful tool for sentiment analysis. It works with any language and can also use provided intensifier words!",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkusBansky/sentiment.git"
},
"keywords": [
"nlp",
"sentiment",
"analysis"
],
"author": "Markiian Benovskyi",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/MarkusBansky/sentiment/issues"
},
"homepage": "https://github.com/MarkusBansky/sentiment#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}