-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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": "tfjs-tiny-yolov2",
"version": "0.4.0",
"description": "Tiny YOLO v2 object detection with tensorflow.js.",
"module": "./build/es6/index.js",
"main": "./build/commonjs/index.js",
"typings": "./build/commonjs/index.d.ts",
"scripts": {
"rollup-min": "rollup -c rollup.config.js --environment minify:true",
"rollup": "rollup -c rollup.config.js",
"tsc": "tsc",
"tsc-es6": "tsc --p tsconfig.es6.json",
"build": "rm -rf ./build && rm -rf ./dist && npm run rollup && npm run rollup-min && npm run tsc && npm run tsc-es6",
"test": "karma start",
"test-travis": "set KARMA_BROWSERS=ChromeHeadlessNoSandbox&& karma start --single-run"
},
"keywords": [
"tiny",
"yolo",
"tensorflow",
"tf"
],
"author": "justadudewhohacks",
"license": "MIT",
"dependencies": {
"@tensorflow/tfjs-core": "0.14.2",
"tfjs-image-recognition-base": "^0.3.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^10.12.12",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-typescript": "^3.0.12",
"rollup": "^0.65.0",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.16.1",
"rollup-plugin-uglify": "^4.0.0",
"typescript": "2.8.4"
}
}