-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "trick-question-detection",
"version": "1.0.0",
"author": "Antonio Scognamiglio <antonio.scognamiglio12@outlook.it>",
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"wink-eng-lite-model": "https://github.com/winkjs/wink-eng-lite-model/releases/download/1.3.1/wink-eng-lite-model-1.3.1.tgz",
"wink-nlp": "^1.12.0",
"wink-nlp-utils": "^2.0.7",
"wink-porter2-stemmer": "^2.0.1",
"wink-pos-tagger": "^2.2.2"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@types/wink-pos-tagger": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"postinstall": "npm run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT"
}