-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "efficientdet.js",
"version": "0.0.0",
"description": "A library to run EfficientDet in the browser",
"main": "index.js",
"files": [
"build/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write src/*.ts",
"docs": "typedoc --out docs src",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"preversion": "npm run lint",
"homepage": "https://github.com/Ely-S/EfficientDetJS",
"repository": {
"type": "git",
"url": "[email protected]:Ely-S/EfficientDetJS.git"
},
"keywords": [
"tf.js",
"tensorflow",
"efficientdet",
"object recognition"
],
"author": "Ely-S",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@tensorflow/tfjs": "^2.5.0",
"@tensorflow/tfjs-node": "^2.7.0",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"layers/",
"/node_modules/"
]
}
}