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
124 lines (124 loc) · 3.8 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.8 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
114
115
116
117
118
119
120
121
122
123
124
{
"name": "com.foxdebug.acode",
"displayName": "Acode",
"version": "1.1.15.141",
"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",
"start": "yarn build-run",
"start-free": "yarn build-run-free",
"build-release-free": "yarn config-build p free && webpack && cordova build android --release",
"build-release": "yarn config-build p && webpack && cordova build android --release",
"test": "jest",
"clean": "cordova platform rm android --save && cordova platform add android --save"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Foxdebug (Ajit Kumar)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.11.2",
"@deadlyjack/ajax": "^1.0.7",
"autosize": "^4.0.2",
"axios": "^0.19.2",
"compare-func": "^2.0.0",
"cordova-android": "9.0.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-sdcard": "^1.0.1",
"cordova-plugin-shell-exec": "^1.0.0",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-vibration": "^3.1.1",
"cordova-plugin-x-toast": "^2.7.2",
"core-js": "^3.6.5",
"crypto-js": "^3.1.9-1",
"debug": "^4.1.1",
"fast-safe-stringify": "^2.0.7",
"filesize": "^6.1.0",
"html-tag-js": "^1.0.1",
"js-base64": "^2.6.4",
"marked": "^0.8.2",
"mime-types": "^2.1.27",
"mustache": "^3.1.0",
"shelljs": "^0.8.4",
"utf8": "^3.0.0",
"vanilla-picker": "^2.10.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@types/ace": "0.0.42",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"cordova-plugin-whitelist": "^1.3.3",
"css-loader": "^3.6.0",
"jest": "^26.3.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"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-inappbrowser": {},
"cordova-disable-http-cache": {},
"cordova-plugin-intent": {},
"cordova-plugin-ftp": {},
"cordova-plugin-webserver": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-system": {},
"cordova-plugin-sdcard": {
"ANDROID_SUPPORT_VERSION": "28.+"
}
},
"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"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}