forked from justadudewhohacks/npm-opencv-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 887 Bytes
/
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
{
"name": "opencv-build",
"version": "0.1.9",
"description": "A simple script to auto build recent OpenCV + contrib version via npm",
"main": "./build/index.js",
"scripts": {
"build": "rm -rf build && tsc",
"install": "node ./install.js",
"test": "mocha --recursive ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justadudewhohacks/npm-opencv-build.git"
},
"keywords": [
"opencv",
"build",
"opencv4nodejs"
],
"author": "justadudewhohacks",
"license": "MIT",
"bugs": {
"url": "https://github.com/justadudewhohacks/npm-opencv-build/issues"
},
"homepage": "https://github.com/justadudewhohacks/npm-opencv-build#readme",
"dependencies": {
"npmlog": "^4.1.2"
},
"devDependencies": {
"@types/node": "^12.7.4",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"typescript": "^3.6.2"
}
}