-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "face-api.js",
"version": "0.5.0",
"description": "JavaScript API for face detection and face recognition in the browser with tensorflow.js",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"scripts": {
"rollup-min": "rollup -c rollup.config.js --environment minify:true",
"rollup": "rollup -c rollup.config.js",
"build": "npm run rollup && npm run rollup-min && tsc",
"test": "karma start"
},
"keywords": [
"face",
"detection",
"recognition",
"tensorflow",
"tf"
],
"author": "stacywebb",
"license": "",
"dependencies": {
"@tensorflow/tfjs-core": "^0.11.9"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^10.1.1",
"jasmine-core": "^3.1.0",
"karma": "^2.0.3",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-typescript": "^3.0.12",
"rollup": "^0.59.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0",
"tslib": "^1.9.1",
"typescript": "^2.8.3",
"ip": ">=1.1.9"
}
}
}