-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "visionql",
"version": "0.1.0",
"description": "",
"main": "dist/call_face_detect.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"start": "node .",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"testWithCoverage": "nyc -r lcov -e .ts -x \"tests/*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sami-badawi/visionql.git"
},
"author": "Sami Badawi",
"license": "MIT",
"bugs": {
"url": "https://github.com/sami-badawi/visionql/issues"
},
"homepage": "https://github.com/sami-badawi/visionql#readme",
"dependencies": {
"@google-cloud/vision": "^0.24.0",
"argparse": "^1.0.10",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
}
}