-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "@dcsan/tfclassify",
"version": "0.0.26",
"description": "TensorFlowJS classifier",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "DEBUG=*,-tensorflow DEBUG_LEVEL=info ts-node src/TestRunner.ts",
"testwatch": "DEBUG=* DEBUG_LEVEL=info ts-node-dev src/TestRunner.ts",
"jest": "DEBUG=* jest",
"testtf": "DEBUG=* npx jest src/tests/TfClassify.test.ts",
"build": "tsc",
"postbuild": "cpx 'src/data/**' 'dist/data' ",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcsan/TfClassifier.git"
},
"author": "DCsan",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcsan/TfClassifier/issues"
},
"homepage": "https://github.com/dcsan/TfClassifier#readme",
"keywords": [
"classifier"
],
"devDependencies": {
"@types/node": "^14.14.9",
"cpx": "^1.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "^1.3.2",
"@tensorflow/tfjs-node": "^2.7.0",
"chalk": "^4.1.0",
"csv-parser": "^2.3.3",
"debug-levels": "^0.2.0",
"lodash": "^4.17.20"
}
}