-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
61 lines (61 loc) · 1.66 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": "question-answering",
"version": "3.0.0",
"description": "Production-ready Question Answering directly in Node.js",
"keywords": [
"nlp",
"question answering",
"tensorflow",
"distilbert"
],
"repository": {
"type": "git",
"url": "git+https://github.com/huggingface/node-question-answering.git"
},
"bugs": {
"url": "https://github.com/huggingface/node-question-answering/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./cli.js",
"dependencies": {
"@tensorflow/tfjs-node": "^2.0.1",
"@types/node": "^13.5.0",
"@types/node-fetch": "^2.5.4",
"@types/progress": "^2.0.3",
"@types/shelljs": "^0.8.7",
"@types/tar": "^4.0.3",
"node-fetch": "^2.6.0",
"progress": "^2.0.3",
"shelljs": "^0.8.3",
"tar": "^5.0.5",
"tokenizers": "^0.7.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.0",
"jest": "^26.1.0",
"prettier": "^1.19.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6",
"yargs-interactive": "^3.0.0"
},
"scripts": {
"dev": "rm -rf dist && npx tsc",
"test": "jest",
"lint": "eslint --fix --ext .js,.ts src scripts",
"lint-check": "eslint --ext .js,.ts src scripts"
},
"engines": {
"node": ">=10 < 11 || >=12 <14"
},
"author": "Pierric Cistac <[email protected]>",
"license": "Apache-2.0"
}