forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.6 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "com.foxdebug.acode",
"displayName": "Acode",
"version": "0.8.83",
"description": "Acode is android and IOS code editor app",
"main": "index.js",
"scripts": {
"lang": "node ./utils/lang.js",
"config-build": "node ./utils/config.js",
"build": "webpack",
"build-run-free": "yarn config-build d free && webpack && cordova run android",
"build-run": "yarn config-build d && webpack && cordova run android",
"build-release-free": "yarn config-build p free && webpack && cordova build android --release",
"build-release": "yarn config-build p && webpack && cordova build android --release"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Foxdebug (Ajit Kumar)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@deadlyjack/ajax": "^1.0.7",
"autosize": "^4.0.2",
"axios": "^0.19.2",
"cordova-android": "^8.1.0",
"cordova-clipboard": "^1.3.0",
"cordova-custom-config": "^5.1.0",
"cordova-disable-http-cache": "^1.0.0",
"cordova-plugin-android-permissions": "^1.0.0",
"cordova-plugin-buildinfo": "^4.0.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-navigationbar-color": "0.0.9",
"cordova-plugin-shell-exec": "^1.0.0",
"cordova-plugin-statusbar": "git+https://github.com/breautek/cordova-plugin-statusbar.git",
"cordova-plugin-vibration": "^3.1.1",
"cordova-plugin-webserver": "git+https://github.com/bykof/cordova-plugin-webserver.git",
"cordova-plugin-x-toast": "^2.7.2",
"cordova.plugins.diagnostic": "^5.0.1",
"core-js": "^3.2.0",
"crypto-js": "^3.1.9-1",
"debug": "^4.1.1",
"html-tag-js": "^0.2.22",
"js-base64": "^2.5.1",
"marked": "^0.8.0",
"mime-types": "^2.1.26",
"mustache": "^3.1.0",
"utf8": "^3.0.0",
"vanilla-picker": "^2.10.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@types/ace": "0.0.42",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"cordova-plugin-whitelist": "^1.3.3",
"css-loader": "^3.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.4"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-file": {},
"cordova-plugin-navigationbar-color": {},
"cordova-custom-config": {},
"cordova-plugin-x-toast": {},
"cordova-plugin-android-permissions": {},
"cordova-plugin-vibration": {},
"cordova-clipboard": {},
"cordova-plugin-buildinfo": {},
"cordova-plugin-webserver": {},
"cordova-plugin-inappbrowser": {},
"cordova.plugins.diagnostic": {
"ANDROID_SUPPORT_VERSION": "28.+"
},
"cordova-disable-http-cache": {},
"cordova-plugin-intent": {},
"cordova-plugin-sdcard": {},
"cordova-plugin-system": {},
"cordova-plugin-ftp": {}
},
"platforms": [
"android"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/deadlyjack/acode.git"
},
"bugs": {
"url": "https://github.com/deadlyjack/acode/issues"
},
"homepage": "https://github.com/deadlyjack/acode#readme",
"resolutions": {
"acorn": ">=6.4.1",
"minimist": ">=1.2.2"
}
}