This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
97 lines (97 loc) · 2.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cleanflight-configurator",
"description": "Crossplatform configuration tool for Cleanflight flight control system.",
"version": "2.6.0",
"main": "main.html",
"chromium-args" : "--disable-features=nw2",
"default_locale": "en",
"scripts": {
"start": "gulp debug",
"gulp": "gulp",
"release": "gulp release",
"test": "karma start test/karma.conf.js"
},
"window": {
"icon": "images/cf/cf_icon_128.png",
"id": "main-window",
"min_width": 1024,
"min_height": 550
},
"repository": {
"type": "git",
"url": "github.com/cleanflight/cleanflight-configurator"
},
"webview": {
"partitions": [
{
"name": "map",
"accessible_resources": [
"tabs/map.html",
"js/tabs/map.js",
"/js/libraries/openlayers/ol.css",
"/js/libraries/openlayers/ol.js",
"/images/icons/cf_icon_position.png",
"/images/icons/cf_icon_position_nofix.png"
]
}
]
},
"author": "The Cleanflight open source project.",
"license": "GPL-3.0",
"engines": {
"node": "10.x"
},
"dependencies": {
"bluebird": "^3.7.2",
"djv": "^2.1.3-alpha.0",
"i18next": "^18.0.1",
"i18next-xhr-backend": "^3.2.2",
"inflection": "1.12.0",
"jbox": "1.0.8",
"jquery": "3.4.1",
"jquery-textcomplete": "^1.8.5",
"jquery-ui-npm": "1.12.0",
"lru_map": "^0.3.3",
"marked": "^0.8.0",
"object-hash": "^2.0.3",
"semver-min": "^0.6.5",
"short-unique-id": "^1.1.1",
"universal-ga": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"command-exists": "^1.2.8",
"del": "^5.0.0",
"follow-redirects": "^1.10.0",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-concat": "~2.6.1",
"gulp-debian": "~0.1.8",
"gulp-git": "^2.10.0",
"gulp-rename": "^2.0.0",
"gulp-yarn": "^2.0.0",
"gulp-zip": "^5.0.0",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-tfs-reporter": "^1.0.2",
"makensis": "^0.20.3",
"mocha": "^7.0.1",
"nw-builder": "^3.5.7",
"os": "^0.1.1",
"remove-trailing-path-separator": "^1.0.2",
"rpm-builder": "^1.2.1",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"targz": "^1.0.1",
"temp": "^0.9.1",
"vinyl-source-stream": "^2.0.0",
"yarn": "^1.22.0"
},
"optionalDependencies": {
"gulp-appdmg": "^1.0.3"
}
}