forked from onycom-AppsRay/VideoFrameSectionLabellingTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
51
52
53
54
55
{
"name": "labeler",
"productName": "Labeler",
"description": "Tool for labeling video segments.",
"version": "0.0.0",
"private": true,
"author": "parkyounghwan <https://github.com/parkyounghwan>",
"copyright": "© 2020, parkyounghwan.",
"main": "app/background.js",
"build": {
"appId": "com.onycom.labelling-tool",
"files": [
"app/**/*",
"node_modules/**/*",
"resources/**/*",
"package.json"
],
"directories": {
"buildResources": "resources"
},
"publish": null
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "mocha test/**/**.spec.js",
"test-opencv": "mocha test/helpers/external/opencvCustom.spec.js",
"start": "node build/start.js",
"release": "webpack --config=build/webpack.app.config.js --env=production && electron-builder"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/node": "^13.13.1",
"babel-loader": "^8.1.0",
"electron": "^1.8.4",
"electron-builder": "^21.1.5",
"electron-settings": "^3.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"chai": "^4.1.0",
"mocha": "^6.2.3",
"should": "^13.2.3",
"css-loader": "^3.5.2",
"style-loader": "^0.23.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"validate.js": "^0.13.1",
"directory-tree": "^2.2.4",
"opencv4nodejs-prebuilt": "^5.3.0-2",
"fs-jetpack": "^2.1.0"
}
}