-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 774 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "gms2-runtime-sync-server",
"version": "0.0.2",
"description": "Sync and mirror GameMaker Studio 2 runtimes",
"main": "index.js",
"author": "LiarOnce",
"license": "MIT",
"dependencies": {
"request": "^2.88.2",
"require-dir": "^1.2.0",
"shelljs": "^0.8.5",
"upyun": "^3.4.6",
"xml2js": "^0.4.23"
},
"scripts": {
"start:all": "node generateJSON.js && node generateTXT.js && node downloadZip.js && npm run convert2XML",
"start:onlydownload": "node generateJSON.js && node generateTXT.js && node downloadZip.js",
"start:onlygenerate": "node generateJSON.js && node generateTXT.js && npm run convert2XML",
"clean": "node cleanfile.js",
"config": "node config.js",
"convert2XML": "node convert2XML.js"
}
}