-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.49 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.49 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
44
{
"name": "com.cryptpass.app",
"displayName": "CryptPassApp",
"version": "1.1.2",
"description": "A sample Apache Cordova application that responds to the deviceready event.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-android": "tsc && cordova run android",
"test-electron": "tsc && cordova run electron --nobuild",
"build-electron": "npm run electron-compile && cordova build electron --release",
"build-android": "cordova build android --release",
"electron-compile": "tsc && node setup-electron.js"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"devDependencies": {
"@types/jquery": "^3.5.14",
"@types/wicg-file-system-access": "^2020.9.5",
"cordova-android": "^14.0.1",
"cordova-browser": "^6.0.0",
"cordova-clipboard": "^1.3.0",
"cordova-electron": "^3.1.0",
"cordova-plugin-save-dialog": "github:ossacolsale/cordova-plugin-save-dialog-CUSTOM",
"cordova-plugin-secure-key-store": "github:pradeep1991singh/cordova-plugin-secure-key-store",
"cordova-plugin-simple-file-chooser": "github:ossacolsale/cordova-plugin-simple-file-chooser-CUSTOM"
},
"cordova": {
"platforms": [
"browser",
"electron",
"android"
],
"plugins": {
"cordova-plugin-secure-key-store": {},
"cordova-plugin-save-dialog": {},
"cordova-clipboard": {},
"cordova-plugin-simple-file-chooser": {}
}
}
}